File tree 6 files changed +798
-67
lines changed
6 files changed +798
-67
lines changed Original file line number Diff line number Diff line change @@ -10,35 +10,25 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
- uses : purescript-contrib/setup-purescript@main
16
16
with :
17
17
purescript : " unstable"
18
18
purs-tidy : " latest"
19
-
20
- - uses : actions/setup-node@v3
21
- with :
22
- node-version : " lts/*"
23
-
24
- - name : Install dependencies
25
- run : |
26
- npm install -g bower
27
- npm install
28
- bower info purescript-node-buffer --verbose
29
- bower install --production
19
+ spago : " unstable"
30
20
31
21
- name : Build source
32
- run : npm run-script build
22
+ run : spago build
33
23
34
24
- name : Run tests
35
25
run : |
36
- bower install
37
- npx pulp test
38
- npx pulp test --main Test.Main1
39
- npx pulp test --main Test.Main2
40
- npx pulp test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
41
- npx pulp test --main Test.Main4
26
+ set -x
27
+ spago test
28
+ spago test --main Test.Main1
29
+ spago test --main Test.Main2
30
+ spago test --main Test.Main3 -- <(head --bytes 1000000 /dev/zero)
31
+ spago test --main Test.Main4
42
32
43
33
- name : Check formatting
44
34
run : |
Original file line number Diff line number Diff line change @@ -12,6 +12,16 @@ Bugfixes:
12
12
13
13
Other improvements:
14
14
15
+ ## [ v10.0.0] ( https://github.com/purescript-node/purescript-node-streams/releases/tag/v10.0.0 ) - 2024-09-27
16
+
17
+ Breaking changes:
18
+
19
+ - Upgrade dependency ` aff ` . #57
20
+
21
+ Other improvements:
22
+
23
+ - Change build system from ` bower ` to ` spago ` . #57
24
+
15
25
## [ v9.0.0] ( https://github.com/purescript-node/purescript-node-streams/releases/tag/v9.0.0 ) - 2022-07-26
16
26
17
27
Breaking changes:
@@ -44,7 +54,7 @@ Breaking changes:
44
54
```
45
55
- Renamed functions to better adhere to naming consistency (#50 by @JordanMartinez )
46
56
47
- All functions that take an optional callback are now
57
+ All functions that take an optional callback are now
48
58
named using the following schema:
49
59
- no callback: ` functionName `
50
60
- with callback: ` functionName' `
@@ -80,7 +90,7 @@ New features:
80
90
Convenience APIs for writeable streams:
81
91
- write
82
92
- end
83
-
93
+
84
94
Convenience APIs for converting ` String ` s from/to ` Array Buffer `
85
95
- toStringUTF8
86
96
- fromStringUTF8
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments