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

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
heyLu committed Oct 4, 2014
1 parent 9066dd5 commit eb85b7b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changes

## 0.3.0

* support multiline eval

you can now evaluate multiline expressions, such as the following:

```haskell
inc :: Int -> Int
inc n = n + 1

import Control.Monad (forM_)

putMany :: (Show a) => [a] -> IO ()
putMany xs = forM_ xs $ \x -> do
putStrLn $ show x
```

however, the following limitations still apply:

* you have to select the expression you want to evaluate
- except if it's a one-line expression
* you can only eval one expression at a time
* all output is printed inline, not on lighttable's console

## 0.2.7

* support for both GHC 7.6 and 7.8 (#48), thanks to @elfenlaid
Expand Down
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.7
version: 0.3.0

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

0 comments on commit eb85b7b

Please sign in to comment.