Skip to content

Commit 0de657a

Browse files
committed
1.6.0
1 parent 2cdaedf commit 0de657a

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Next version
44

5+
## 1.6.0
6+
57
- Optimize compare and equal functions. https://github.com/rescript-association/rescript-core/pull/238
68
- Add `make` and `done` + `value` functions to `AsyncIterator`. https://github.com/rescript-association/rescript-core/pull/243
79
- Int: Add bitwise functions from Pervasives. https://github.com/rescript-association/rescript-core/pull/245

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rescript/core",
3-
"version": "1.5.2",
3+
"version": "1.6.0",
44
"scripts": {
55
"clean": "rescript clean",
66
"build": "rescript",

Diff for: scripts/DocTests.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var bscBin = Path.join(compilerDir, "node_modules", ".bin", "bsc");
4848
var rescriptCoreCompiled = Path.join(compilerDir, "node_modules", "@rescript", "core", "lib", "ocaml");
4949

5050
function makePackageJson(coreVersion) {
51-
return "{\n \"name\": \"test-compiler-examples\",\n \"version\": \"1.0.0\",\n \"dependencies\": {\n \"@rescript/core\": \"file:rescript-core-" + coreVersion + ".tgz\",\n \"rescript\": \"11.1.0-rc.7\"\n }\n}\n";
51+
return "{\n \"name\": \"test-compiler-examples\",\n \"version\": \"1.0.0\",\n \"dependencies\": {\n \"@rescript/core\": \"file:rescript-core-" + coreVersion + ".tgz\",\n \"rescript\": \"11.1.4\"\n }\n}\n";
5252
}
5353

5454
var rescriptJson = "{\n \"name\": \"dummy\",\n \"sources\": {\n \"dir\": \"dummy\",\n \"subdirs\": true\n },\n \"bs-dependencies\": [\n \"@rescript/core\"\n ],\n \"bsc-flags\": [\n \"-open RescriptCore\"\n ]\n}";

Diff for: scripts/DocTests.res

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ let makePackageJson = coreVersion =>
8989
"version": "1.0.0",
9090
"dependencies": {
9191
"@rescript/core": "file:rescript-core-${coreVersion}.tgz",
92-
"rescript": "11.1.0-rc.7"
92+
"rescript": "11.1.4"
9393
}
9494
}
9595
`

0 commit comments

Comments
 (0)