Skip to content

Commit 0677beb

Browse files
Update to PureScript v0.15.0 (#50)
1 parent ff26f1d commit 0677beb

File tree

5 files changed

+25
-15
lines changed

5 files changed

+25
-15
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- name: Set up a PureScript toolchain
1717
uses: purescript-contrib/setup-purescript@main
1818
with:
19+
purescript: "unstable"
1920
purs-tidy: "latest"
2021

2122
- name: Cache PureScript dependencies
@@ -32,8 +33,17 @@ jobs:
3233
- name: Build source
3334
run: spago build --no-install
3435

35-
- name: Run tests
36-
run: spago test --no-install
36+
# - name: Run tests
37+
# run: spago test --no-install
3738

3839
- name: Check formatting
3940
run: purs-tidy check src test
41+
42+
- name: Verify Bower & Pulp
43+
run: |
44+
npm install bower [email protected]
45+
npx bower install
46+
npx pulp build -- --censor-lib --strict
47+
if [ -d "test" ]; then
48+
npx pulp test
49+
fi

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Notable changes to this project are documented in this file. The format is based
55
## [Unreleased]
66

77
Breaking changes:
8+
- Update project and deps to PureScript v0.15.0 (#50 by @JordanMartinez)
89

910
New features:
1011

bower.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-console": "^5.0.0",
21-
"purescript-exceptions": "^5.0.0",
22-
"purescript-lists": "^6.0.0",
23-
"purescript-partial": "^3.0.0",
24-
"purescript-profunctor": "^5.0.0",
25-
"purescript-strings": "^5.0.0",
26-
"purescript-transformers": "^5.0.0",
27-
"purescript-typelevel-prelude": "^6.0.0",
28-
"purescript-unsafe-coerce": "^5.0.0"
20+
"purescript-console": "master",
21+
"purescript-exceptions": "master",
22+
"purescript-lists": "master",
23+
"purescript-partial": "master",
24+
"purescript-profunctor": "master",
25+
"purescript-strings": "master",
26+
"purescript-transformers": "master",
27+
"purescript-typelevel-prelude": "master",
28+
"purescript-unsafe-coerce": "master"
2929
},
3030
"devDependencies": {
31-
"purescript-effect": "^3.0.0",
32-
"purescript-quickcheck": "^7.0.0"
31+
"purescript-effect": "master",
32+
"purescript-quickcheck": "master"
3333
}
3434
}

packages.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
let upstream =
2-
https://github.com/purescript/package-sets/releases/download/psc-0.14.4-20211109/packages.dhall sha256:e8d8d5b339f6d46d950da90037c6c38e8809f7e34f727373089ab82c080fc709
2+
https://raw.githubusercontent.com/purescript/package-sets/prepare-0.15/src/packages.dhall
33

44
in upstream

spago.dhall

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
, "nonempty"
1515
, "partial"
1616
, "prelude"
17-
, "psci-support"
1817
, "quickcheck"
1918
, "strings"
2019
, "tailrec"

0 commit comments

Comments
 (0)