Skip to content

Commit 091495d

Browse files
authored
Prepare v3.0.0 release (#79)
* Update CI to build with the latest version of the compiler * Update the bower repository URL to match the URL in the registry * Upgrade bower dependencies * Update the changelog * Remove st from dependencies * Don't mention Record.ST in the readme anymore
1 parent 6579dc7 commit 091495d

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
- uses: actions/checkout@v2
1414

1515
- uses: purescript-contrib/setup-purescript@main
16-
with:
17-
purescript: "0.14.0-rc5"
1816

1917
- uses: actions/setup-node@v1
2018
with:

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ Notable changes to this project are documented in this file. The format is based
44

55
## [Unreleased]
66

7+
Breaking changes:
8+
9+
New features:
10+
11+
Bugfixes:
12+
13+
Other improvements:
14+
15+
## [v3.0.0](https://github.com/purescript/purescript-record/releases/tag/v3.0.0) - 2021-02-26
16+
717
Breaking changes:
818
- Added support for PureScript 0.14 and dropped support for all previous versions (#66)
919
- Updated `Record.Builder.merge` and `Record.Builder.union` so that they behave like `Record.merge` and `Record.union`: fields from the argument override those of the record being built in case of overlaps. (#73)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ mergedXY = Record.merge { x: 1 } { y: 1 }
5050

5151
See the [tests](./test/Main.purs) for more examples.
5252

53-
If you need to combine multiple operations and avoid intermediate values, you might consider using either [Record.Builder](https://pursuit.purescript.org/packages/purescript-record/docs/Record.Builder) or [Record.ST](https://pursuit.purescript.org/packages/purescript-record/docs/Record.ST).
53+
If you need to combine multiple operations and avoid intermediate values, you might consider using [Record.Builder](https://pursuit.purescript.org/packages/purescript-record/docs/Record.Builder).
5454

5555
You can also find an explanation and example of how to use this library [in this tutorial](https://purescript-simple-json.readthedocs.io/en/latest/inferred-record-types.html) of the Simple-JSON docs.
5656

bower.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "BSD-3-Clause",
66
"repository": {
77
"type": "git",
8-
"url": "git://github.com/purescript/purescript-record.git"
8+
"url": "https://github.com/purescript/purescript-record.git"
99
},
1010
"ignore": [
1111
"**/.*",
@@ -17,12 +17,11 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-functions": "master",
21-
"purescript-prelude": "master",
22-
"purescript-st": "master",
23-
"purescript-unsafe-coerce": "master"
20+
"purescript-functions": "^5.0.0",
21+
"purescript-prelude": "^5.0.0",
22+
"purescript-unsafe-coerce": "^5.0.0"
2423
},
2524
"devDependencies": {
26-
"purescript-assert": "master"
25+
"purescript-assert": "^5.0.0"
2726
}
2827
}

0 commit comments

Comments
 (0)