Skip to content

Commit 97d528a

Browse files
authored
Prepare v6.0.0 release (#111)
* Update CI to build with the latest version of the compiler * Upgrade bower dependencies * Update the changelog
1 parent 3d7976e commit 97d528a

File tree

3 files changed

+25
-18
lines changed

3 files changed

+25
-18
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
- name: Set up a PureScript toolchain
1717
uses: purescript-contrib/setup-purescript@main
18-
with:
19-
purescript: "0.14.0-rc5"
2018

2119
- name: Cache PureScript dependencies
2220
uses: actions/cache@v2

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ Notable changes to this project are documented in this file. The format is based
44

55
## [Unreleased]
66

7-
Breaking changes (😱!!!):
7+
Breaking changes:
8+
9+
New features:
10+
11+
Bugfixes:
12+
13+
Other improvements:
14+
15+
## [v6.0.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v6.0.0) - 2021-02-26
16+
17+
Breaking changes:
818
- Improved performance of `string` and update `StringLike` to have `stripPrefix` as a class member instead of `indexOf` (#93)
919
- Non-empty combinators now return `NonEmptyList` (#102)
1020
- Added support for PureScript 0.14 and dropped support for all previous versions (#101)

bower.json

+14-15
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,21 @@
2020
"package.json"
2121
],
2222
"dependencies": {
23-
"purescript-arrays": "master",
24-
"purescript-either": "master",
25-
"purescript-foldable-traversable": "master",
26-
"purescript-identity": "master",
27-
"purescript-integers": "master",
28-
"purescript-lists": "master",
29-
"purescript-maybe": "master",
30-
"purescript-prelude": "master",
31-
"purescript-strings": "master",
32-
"purescript-transformers": "master",
33-
"purescript-unicode": "master"
23+
"purescript-arrays": "^6.0.0",
24+
"purescript-either": "^5.0.0",
25+
"purescript-foldable-traversable": "^5.0.0",
26+
"purescript-identity": "^5.0.0",
27+
"purescript-integers": "^5.0.0",
28+
"purescript-lists": "^6.0.0",
29+
"purescript-maybe": "^5.0.0",
30+
"purescript-prelude": "^5.0.0",
31+
"purescript-strings": "^5.0.0",
32+
"purescript-transformers": "^5.0.0",
33+
"purescript-unicode": "^5.0.0"
3434
},
3535
"devDependencies": {
36-
"purescript-assert": "master",
37-
"purescript-console": "master",
38-
"purescript-effect": "master",
39-
"purescript-psci-support": "master"
36+
"purescript-assert": "^5.0.0",
37+
"purescript-console": "^5.0.0",
38+
"purescript-effect": "^3.0.0"
4039
}
4140
}

0 commit comments

Comments
 (0)