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

Commit eb85b7b

Browse files
committed
release 0.3.0
1 parent 9066dd5 commit eb85b7b

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

changelog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changes
22

3+
## 0.3.0
4+
5+
* support multiline eval
6+
7+
you can now evaluate multiline expressions, such as the following:
8+
9+
```haskell
10+
inc :: Int -> Int
11+
inc n = n + 1
12+
13+
import Control.Monad (forM_)
14+
15+
putMany :: (Show a) => [a] -> IO ()
16+
putMany xs = forM_ xs $ \x -> do
17+
putStrLn $ show x
18+
```
19+
20+
however, the following limitations still apply:
21+
22+
* you have to select the expression you want to evaluate
23+
- except if it's a one-line expression
24+
* you can only eval one expression at a time
25+
* all output is printed inline, not on lighttable's console
26+
327
## 0.2.7
428

529
* support for both GHC 7.6 and 7.8 (#48), thanks to @elfenlaid

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.7
13+
version: 0.3.0
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.7",
2+
"version": "0.3.0",
33
"author": "Jeff Taggart, Lucas Stadler, Ben Kirwin",
44
"source": "https://github.com/psylinse/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.2.7"
1+
(defproject com.lighttable/haskell "0.3.0"
22
:description "Haskell language plugin for Light Table"
33
:dependencies [[org.clojure/clojure "1.5.1"]])

0 commit comments

Comments
 (0)