Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit b22d015

Browse files
committed
Prep for v5.0.0
1 parent c5d81d3 commit b22d015

File tree

4 files changed

+34
-18
lines changed

4 files changed

+34
-18
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ Bugfixes:
1212

1313
Other improvements:
1414

15+
## [v5.0.0](https://github.com/purescript-node/purescript-node-streams-aff/releases/tag/v5.0.0)
16+
17+
Breaking changes:
18+
19+
- Readers return record instead of `Tuple`. (#11 by @jamesdbrock)
20+
21+
New features:
22+
23+
- New `Internal` functions: `onceClose`, `writable`, `newStreamPassThrough`. (#11 by @jamesdbrock)
24+
25+
Bugfixes:
26+
27+
- More cleanup for event handlers. (#11 by @jamesdbrock)
28+
- Complete reads when stream is closed. (#11 by @jamesdbrock)
29+
1530
## v4.0.1
1631

1732
Breaking changes:

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"purescript-prelude": "^v6.0.1",
2727
"purescript-refs": "^v6.0.0",
2828
"purescript-st": "^v6.2.0",
29-
"purescript-tuples": "^v7.0.0"
29+
"purescript-tailrec": "^v6.1.0"
3030
}
3131
}

packages.dhall

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ in upstream
9999
-------------------------------
100100
-}
101101
let upstream =
102-
https://github.com/purescript/package-sets/releases/download/psc-0.15.4-20221013/packages.dhall
103-
sha256:21000b190e1ef14c92feb1400816022319bc40a30280d20f24c0dcacfb85e966
102+
https://github.com/purescript/package-sets/releases/download/psc-0.15.7-20230112/packages.dhall
103+
sha256:3e5a439b9975949016eac07660ea2c80531ef0eb08903fcbeacc1d291a05cea0
104104

105105
in upstream

spago.dhall

+16-15
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ to generate this file without the comments in this block.
1212
-}
1313
{ name = "node-streams-aff"
1414
, dependencies =
15-
[ "aff"
16-
, "effect"
17-
, "exceptions"
18-
, "node-buffer"
19-
, "node-streams"
20-
, "nullable"
21-
, "st"
22-
, "refs"
23-
, "arrays"
24-
, "either"
25-
, "maybe"
26-
, "prelude"
27-
, "tailrec"
28-
]
15+
[ "aff"
16+
, "effect"
17+
, "exceptions"
18+
, "node-buffer"
19+
, "node-streams"
20+
, "nullable"
21+
, "st"
22+
, "refs"
23+
, "arrays"
24+
, "either"
25+
, "maybe"
26+
, "prelude"
27+
, "tailrec"
28+
]
2929
, packages = ./packages.dhall
3030
, sources = [ "src/**/*.purs" ]
3131
, license = "MIT"
32-
, repository = "https://github.com/purescript-node/purescript-node-streams-aff.git"
32+
, repository =
33+
"https://github.com/purescript-node/purescript-node-streams-aff.git"
3334
}

0 commit comments

Comments
 (0)