Skip to content

Commit d092a01

Browse files
Prepare v7.0.0 release (1st PS 0.15.0-compatible release) (#42)
* Update the bower dependencies * Uncomment spago tests * Update the changelog * Update Main.purs Co-authored-by: Thomas Honeyman <[email protected]>
1 parent 216a17a commit d092a01

File tree

4 files changed

+27
-17
lines changed

4 files changed

+27
-17
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
- name: Run tests
3333
run: |
3434
bower install
35-
# npm run-script test --if-present
35+
npm run-script test --if-present

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+
## [v7.0.0](https://github.com/purescript-node/purescript-node-http/releases/tag/v7.0.0) - 2022-04-28
16+
717
Breaking changes:
818
- Update project and deps to PureScript v0.15.0 (#41 by @JordanMartinez, @sigma-andex)
919

bower.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212
"url": "https://github.com/purescript-node/purescript-node-http.git"
1313
},
1414
"devDependencies": {
15-
"purescript-console": "master"
15+
"purescript-console": "^6.0.0"
1616
},
1717
"dependencies": {
18-
"purescript-arraybuffer-types": "main",
19-
"purescript-contravariant": "master",
20-
"purescript-effect": "master",
21-
"purescript-foreign": "master",
22-
"purescript-foreign-object": "master",
23-
"purescript-maybe": "master",
24-
"purescript-node-buffer": "master",
25-
"purescript-node-net": "master",
26-
"purescript-node-streams": "master",
27-
"purescript-node-url": "master",
28-
"purescript-nullable": "main",
29-
"purescript-options": "main",
30-
"purescript-prelude": "master",
31-
"purescript-unsafe-coerce": "master"
18+
"purescript-arraybuffer-types": "^3.0.2",
19+
"purescript-contravariant": "^6.0.0",
20+
"purescript-effect": "^4.0.0",
21+
"purescript-foreign": "^7.0.0",
22+
"purescript-foreign-object": "^4.0.0",
23+
"purescript-maybe": "^6.0.0",
24+
"purescript-node-buffer": "^8.0.0",
25+
"purescript-node-net": "^3.0.0",
26+
"purescript-node-streams": "^6.0.0",
27+
"purescript-node-url": "^6.0.0",
28+
"purescript-nullable": "^6.0.0",
29+
"purescript-options": "^7.0.0",
30+
"purescript-prelude": "^6.0.0",
31+
"purescript-unsafe-coerce": "^6.0.0"
3232
}
3333
}

test/Main.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ respond req res = do
4343
, "</form>"
4444
]
4545
setHeader res "Content-Type" "text/html"
46-
_ <- writeString outputStream UTF8 html (pure unit)
46+
_ <- writeString outputStream UTF8 html mempty
4747
end outputStream (pure unit)
4848
"POST" -> void $ pipe inputStream outputStream
4949
_ -> unsafeCrashWith "Unexpected HTTP method"

0 commit comments

Comments
 (0)