Skip to content

Commit 5e6ba7d

Browse files
authored
Merge pull request #9 from jacereda/master
Updates for 0.11
2 parents dbef11b + 7618094 commit 5e6ba7d

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

bower.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212
"url": "git://github.com/purescript-contrib/purescript-hugenums.git"
1313
},
1414
"dependencies": {
15-
"purescript-arrays": "^3.0.0",
16-
"purescript-globals": "^2.0.0",
17-
"purescript-integers": "^2.0.0",
18-
"purescript-quickcheck": "^3.0.0",
19-
"purescript-strings": "^2.0.2"
15+
"purescript-arrays": "^4.0.0",
16+
"purescript-globals": "^3.0.0",
17+
"purescript-integers": "^3.0.0",
18+
"purescript-quickcheck": "^4.0.0",
19+
"purescript-generics": "^4.0.0",
20+
"purescript-strings": "^3.0.0"
2021
},
2122
"devDependencies": {
22-
"purescript-quickcheck-laws": "^2.0.0"
23+
"purescript-quickcheck-laws": "^3.0.0"
2324
}
2425
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
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-
"purescript": "^0.10.1",
12-
"rimraf": "^2.5.4"
9+
"pulp": "^11.0.0",
10+
"purescript-psa": "^0.5.0",
11+
"purescript": "^0.11.1",
12+
"rimraf": "^2.6.1"
1313
}
1414
}

test/Main.purs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module Test.Main where
22

33
import Prelude
4-
import Test.QuickCheck.Laws.Data.Eq
5-
import Test.QuickCheck.Laws.Data.Ord
6-
import Test.QuickCheck.Laws.Data.Semiring
7-
import Test.QuickCheck.Laws.Data.Ring
8-
import Data.HugeNum
4+
import Test.QuickCheck.Laws.Data.Eq (checkEq)
5+
import Test.QuickCheck.Laws.Data.Ord (checkOrd)
6+
import Test.QuickCheck.Laws.Data.Semiring (checkSemiring)
7+
import Test.QuickCheck.Laws.Data.Ring (checkRing)
8+
import Data.HugeNum (HugeNum)
99
import Control.Monad.Eff (Eff)
1010
import Control.Monad.Eff.Console (CONSOLE, log)
1111
import Control.Monad.Eff.Exception (EXCEPTION)
@@ -19,7 +19,7 @@ main :: forall eff.
1919
Eff
2020
( console :: CONSOLE
2121
, random :: RANDOM
22-
, err :: EXCEPTION
22+
, exception :: EXCEPTION
2323
| eff
2424
)
2525
Unit

0 commit comments

Comments
 (0)