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

Commit fa6e1c3

Browse files
committed
release v0.2.5.
1 parent 2d0487a commit fa6e1c3

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changes
2+
3+
## 0.2.5
4+
5+
* support evaluating top-level assignments again
6+
7+
```haskell
8+
n = 42
9+
inc = \x -> x + 1
10+
11+
-- the following does *not* work yet (coming soon)
12+
inc x = x + 1
13+
```
14+
* remove old results on the same line before evaluating

light-haskell.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: light-haskell
1010
-- PVP summary: +-+------- breaking API changes
1111
-- | | +----- non-breaking API additions
1212
-- | | | +--- code changes with no API change
13-
version: 0.2.4
13+
version: 0.2.5
1414

1515
-- A short (one-line) description of the package.
1616
-- synopsis:

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{"name": "Haskell",
2-
"version": "0.2.4",
2+
"version": "0.2.5",
33
"author": "Jeff Taggart, Lucas Stadler, Ben Kirwin",
44
"source": "https://github.com/jetaggart/light-haskell",
55
"desc": "Haskell integration for LightTable",

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
(defproject com.lighttable/haskell "0.0.1"
1+
(defproject com.lighttable/haskell "0.2.5"
22
:description "Haskell language plugin for Light Table"
33
:dependencies [[org.clojure/clojure "1.5.1"]])

0 commit comments

Comments
 (0)