Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
release v0.2.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
heyLu committed Feb 15, 2014
1 parent 2d0487a commit fa6e1c3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion light-haskell.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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"]])

0 comments on commit fa6e1c3

Please sign in to comment.