From fa6e1c3ab5ed794083544dd3e9a7ea96cf201adf Mon Sep 17 00:00:00 2001 From: Lucas Stadler Date: Sat, 15 Feb 2014 13:43:10 +0100 Subject: [PATCH] release v0.2.5. --- changelog.md | 14 ++++++++++++++ light-haskell.cabal | 2 +- plugin.json | 2 +- project.clj | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 changelog.md diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..9bf62a5 --- /dev/null +++ b/changelog.md @@ -0,0 +1,14 @@ +# Changes + +## 0.2.5 + +* support evaluating top-level assignments again + + ```haskell + n = 42 + inc = \x -> x + 1 + + -- the following does *not* work yet (coming soon) + inc x = x + 1 + ``` +* remove old results on the same line before evaluating \ No newline at end of file diff --git a/light-haskell.cabal b/light-haskell.cabal index 2a0b98c..9b58dad 100644 --- a/light-haskell.cabal +++ b/light-haskell.cabal @@ -10,7 +10,7 @@ name: light-haskell -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change -version: 0.2.4 +version: 0.2.5 -- A short (one-line) description of the package. -- synopsis: diff --git a/plugin.json b/plugin.json index f82fb5c..423a1d0 100644 --- a/plugin.json +++ b/plugin.json @@ -1,5 +1,5 @@ {"name": "Haskell", - "version": "0.2.4", + "version": "0.2.5", "author": "Jeff Taggart, Lucas Stadler, Ben Kirwin", "source": "https://github.com/jetaggart/light-haskell", "desc": "Haskell integration for LightTable", diff --git a/project.clj b/project.clj index 0757459..66e5107 100644 --- a/project.clj +++ b/project.clj @@ -1,3 +1,3 @@ -(defproject com.lighttable/haskell "0.0.1" +(defproject com.lighttable/haskell "0.2.5" :description "Haskell language plugin for Light Table" :dependencies [[org.clojure/clojure "1.5.1"]])