Skip to content

Commit ddd2c02

Browse files
committed
v16.0.0
1 parent 83479c7 commit ddd2c02

File tree

6 files changed

+32
-28
lines changed

6 files changed

+32
-28
lines changed

.changes/16.0.0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## 16.0.0 - 2023-12-19
2+
### Added
3+
* [#21](https://github.com/TheSpyder/rescript-nodejs/21) Timers.Promises from NodeJS 16
4+
* [#22](https://github.com/TheSpyder/rescript-nodejs/22) The `Event` module now includes 2 and 3 argument variants of `fromString` and `fromSymbol` for use ReScript 11 uncurried mode
5+
### Changed
6+
* [#12](https://github.com/TheSpyder/rescript-nodejs/12) BREAKING: Record types are now used where possible. Requires ReScript 10.

.changes/unreleased/Added-20231211-034512.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/Changed-20231210-063131.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/Changed-20231219-095815.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [Changie](https://github.com/miniscruff/changie).
77

88

9-
No releases yet, this file will be updated when generating your first release.
9+
## 16.0.0 - 2023-12-19
10+
### Added
11+
* [#21](https://github.com/TheSpyder/rescript-nodejs/21) Timers.Promises from NodeJS 16
12+
* [#22](https://github.com/TheSpyder/rescript-nodejs/22) The `Event` module now includes 2 and 3 argument variants of `fromString` and `fromSymbol` for use ReScript 11 uncurried mode
13+
### Changed
14+
* [#12](https://github.com/TheSpyder/rescript-nodejs/12) BREAKING: Record types are now used where possible. Requires ReScript 10.

package.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rescript-nodejs",
3-
"version": "15.0.0",
3+
"version": "16.0.0",
44
"scripts": {
55
"build": "rescript",
66
"clean": "rescript clean",
@@ -12,6 +12,25 @@
1212
"test-start": "onchange --await-write-finish 1000 --initial 'lib/js/{test,src}/**/*.bs.js' -- yarn test",
1313
"test-watchexec": "watchexec -r -d 0 -w src -w test -e res -- yarn test"
1414
},
15+
"description": "Node bindings for ReScript",
16+
"license": "MIT",
17+
"devDependencies": {
18+
"@dusty-phillips/rescript-zora": "^4.0.0",
19+
"changie": "^1.17.0",
20+
"onchange": "^7.1.0",
21+
"pta": "^1.2.0",
22+
"rescript": "^10.1.4",
23+
"zora": "^5.2.0"
24+
},
25+
"files": [
26+
"docs",
27+
"examples",
28+
"lib/js",
29+
"src",
30+
"test",
31+
"bsconfig.json",
32+
"CHANGELOG.md"
33+
],
1534
"keywords": [
1635
"rescript",
1736
"nodejs"
@@ -23,15 +42,5 @@
2342
"type": "git",
2443
"url": "git://github.com/TheSpyder/rescript-nodejs.git"
2544
},
26-
"description": "Node bindings for ReScript",
27-
"license": "MIT",
28-
"devDependencies": {
29-
"@dusty-phillips/rescript-zora": "^4.0.0",
30-
"changie": "^1.17.0",
31-
"onchange": "^7.1.0",
32-
"pta": "^1.2.0",
33-
"rescript": "^10.1.4",
34-
"zora": "^5.2.0"
35-
},
3645
"packageManager": "[email protected]"
3746
}

0 commit comments

Comments
 (0)