Skip to content

Commit 667c104

Browse files
authored
Update to purescript 0.15 (#39)
1 parent c883c97 commit 667c104

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

bower.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "purescript-rationals",
3-
"version": "2.1.0",
43
"license": "MIT",
54
"repository": {
65
"type": "git",
7-
"url": "git://github.com/anttih/purescript-rationals.git"
6+
"url": "git://github.com/purescript-contrib/purescript-rationals.git"
87
},
98
"ignore": [
109
"**/.*",
@@ -13,13 +12,14 @@
1312
"output"
1413
],
1514
"dependencies": {
16-
"purescript-integers": "^5.0.0",
17-
"purescript-prelude": "^5.0.0"
15+
"purescript-integers": "^v6.0.0",
16+
"purescript-prelude": "^v6.0.0"
1817
},
1918
"devDependencies": {
20-
"purescript-bigints": "^5.0.0",
21-
"purescript-console": "^5.0.0",
22-
"purescript-quickcheck": "^7.0.0",
23-
"purescript-quickcheck-laws": "^6.0.0"
19+
"purescript-bigints": "^7.0.1",
20+
"purescript-effect": "^4.0.0",
21+
"purescript-console": "^6.0.0",
22+
"purescript-quickcheck": "^8.0.1",
23+
"purescript-quickcheck-laws": "^7.0.0"
2424
}
2525
}

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"spago-test": "spago -x ./test.dhall test"
99
},
1010
"devDependencies": {
11-
"pulp": "^15.0.0",
12-
"purescript": "^0.14.0",
13-
"big-integer": "^1.6.48"
11+
"big-integer": "^1.6.51",
12+
"pulp": "^16.0.1",
13+
"purescript": "^0.15.2",
14+
"spago": "^0.20.9"
1415
}
1516
}

packages.dhall

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ in upstream
105105
-------------------------------
106106
-}
107107
let upstream =
108-
https://github.com/purescript/package-sets/releases/download/psc-0.14.0-20210302/packages.dhall sha256:20cc5b89cf15433623ad6f250f112bf7a6bd82b5972363ecff4abf1febb02c50
108+
https://github.com/purescript/package-sets/releases/download/psc-0.15.0-20220525/packages.dhall
109+
sha256:5facfdf9c35801a0e6a41b08b4293f947743007a9224a2a3d7694d87a44a7f28
109110

110111
in upstream

spago.dhall

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Welcome to a Spago project!
33
You can edit this file as you like.
44
-}
55
{ name = "rationals"
6-
, dependencies = [ "integers" ]
6+
, dependencies = [ "integers", "prelude" ]
7+
, license = "MIT"
8+
, repository = "git://github.com/purescript-contrib/purescript-rationals.git"
79
, packages = ./packages.dhall
810
, sources = [ "src/**/*.purs" ]
911
}

test.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ let conf = ./spago.dhall
22

33
in conf // {
44
sources = conf.sources # [ "test/**/*.purs" ],
5-
dependencies = conf.dependencies # [ "bigints", "console", "test-unit", "quickcheck-laws" ]
5+
dependencies = conf.dependencies # [ "bigints", "console", "effect", "test-unit", "quickcheck", "quickcheck-laws" ]
66
}
77

0 commit comments

Comments
 (0)