Skip to content

Commit da5091b

Browse files
authored
Merge pull request #18 from purescript/ps-0.11
Update for PureScript 0.11
2 parents 29b9d20 + 840fdb5 commit da5091b

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
dist: trusty
33
sudo: required
4-
node_js: 6
4+
node_js: stable
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:

bower.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-lists": "^3.0.0",
21-
"purescript-tuples": "^3.0.0",
22-
"purescript-foldable-traversable": "^2.0.0",
23-
"purescript-unfoldable": "^2.0.0",
24-
"purescript-control": "^2.0.0"
20+
"purescript-lists": "^4.0.0",
21+
"purescript-tuples": "^4.0.0",
22+
"purescript-foldable-traversable": "^3.0.0",
23+
"purescript-unfoldable": "^3.0.0",
24+
"purescript-control": "^3.0.0"
2525
},
2626
"devDependencies": {
27-
"purescript-assert": "^2.0.0",
28-
"purescript-console": "^2.0.0"
27+
"purescript-assert": "^3.0.0",
28+
"purescript-console": "^3.0.0"
2929
}
3030
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "pulp build --censor-lib --strict",
5+
"build": "pulp build -- --censor-lib --strict",
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"pulp": "^9.0.1",
10-
"purescript-psa": "^0.3.9",
11-
"rimraf": "^2.5.0"
9+
"pulp": "^10.0.4",
10+
"purescript-psa": "^0.5.0-rc.1",
11+
"rimraf": "^2.6.1"
1212
}
1313
}

test/Test/Data/CatList.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Test.Data.CatList (testCatList) where
22

33
import Data.CatList
4-
import Control.Bind (bind)
4+
import Control.Bind (discard)
55
import Control.Category (id)
66
import Control.Monad.Eff (Eff)
77
import Control.Monad.Eff.Console (CONSOLE, log)

test/Test/Data/CatQueue.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Test.Data.CatQueue (testCatQueue) where
22

3-
import Prelude (Unit, (==), ($), bind)
3+
import Prelude (Unit, (==), ($), discard)
44

55
import Control.Monad.Eff (Eff)
66
import Control.Monad.Eff.Console (CONSOLE, log)

0 commit comments

Comments
 (0)