Skip to content

Commit 3272543

Browse files
Update to v0.14.0-rc3 (#31)
* Update Bower dependencies to master * Update node-buffer to master * Replace # Type with Row Type * Run test command with psa flags * Update CI to use v0.14.0-rc3 PS release
1 parent 8c1f76a commit 3272543

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
- uses: actions/checkout@v2
1414

1515
- uses: purescript-contrib/setup-purescript@main
16+
with:
17+
purescript: "0.14.0-rc3"
1618

1719
- uses: actions/setup-node@v1
1820
with:

bower.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"url": "git://github.com/purescript-node/purescript-node-streams.git"
1313
},
1414
"devDependencies": {
15-
"purescript-console": "^4.1.0",
16-
"purescript-assert": "^4.0.0",
17-
"purescript-partial": "^2.0.0"
15+
"purescript-console": "master",
16+
"purescript-assert": "master",
17+
"purescript-partial": "master"
1818
},
1919
"dependencies": {
20-
"purescript-effect": "^2.0.0",
21-
"purescript-node-buffer": ">=5.0.0 <7.0.0",
22-
"purescript-prelude": "^4.0.0",
23-
"purescript-either": "^4.0.0",
24-
"purescript-exceptions": "^4.0.0"
20+
"purescript-effect": "master",
21+
"purescript-node-buffer": "master",
22+
"purescript-prelude": "master",
23+
"purescript-either": "master",
24+
"purescript-exceptions": "master"
2525
}
2626
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
55
"build": "eslint src && pulp build -- --censor-lib --strict",
6-
"test": "pulp test"
6+
"test": "pulp test -- --censor-lib --strict"
77
},
88
"devDependencies": {
99
"eslint": "^7.15.0",

src/Node/Stream.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import Node.Encoding (Encoding)
5050
-- |
5151
-- | - Whether reading and/or writing from/to the stream are allowed.
5252
-- | - Effects associated with reading/writing from/to this stream.
53-
foreign import data Stream :: # Type -> Type
53+
foreign import data Stream :: Row Type -> Type
5454

5555
-- | A phantom type associated with _readable streams_.
5656
data Read

0 commit comments

Comments
 (0)