Skip to content

Commit 89a9d71

Browse files
authored
Set version to 11.0.0-alpha.6 (#6221)
1 parent 63fd342 commit 89a9d71

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
> - :house: [Internal]
1111
> - :nail_care: [Polish]
1212
13+
# 11.0.0-alpha.6 (Unreleased)
14+
15+
#### :boom: Breaking Change
16+
17+
- `-bs-super-errors` flag has been removed along with Super_errors. https://github.com/rescript-lang/rescript-compiler/pull/6199
18+
19+
#### :nail_care: Polish
20+
21+
- Add location information to duplicate type definition error messages. https://github.com/rescript-lang/rescript-compiler/pull/6199
22+
- Replace normal module errors with Super_error module, and clean up Super_error. https://github.com/rescript-lang/rescript-compiler/pull/6199
23+
1324
# 11.0.0-alpha.5
1425

1526
#### :rocket: Main New Feature
@@ -24,7 +35,6 @@
2435
#### :boom: Breaking Change
2536

2637
- Parse `assert` as a regular function. `assert` is no longer a unary expression. Example: before `assert 1 == 2` is parsed as `(assert 1) == 2`, now it is parsed as `assert(1 == 2)`. https://github.com/rescript-lang/rescript-compiler/pull/6180
27-
- `-bs-super-errors` flag has been removed along with Super_errors. https://github.com/rescript-lang/rescript-compiler/pull/6199
2838

2939
#### :bug: Bug Fix
3040

@@ -33,11 +43,6 @@
3343
- Add error messages for dangling doc comments/attributes and mutable in record type definition. https://github.com/rescript-lang/rescript-compiler/pull/6206
3444
- Fix issue with overlapping array and object in untagged variants https://github.com/rescript-lang/rescript-compiler/pull/6219
3545

36-
#### :nail_care: Polish
37-
38-
- Add location information to duplicate type definition error messages. https://github.com/rescript-lang/rescript-compiler/pull/6199
39-
- Replace normal module errors with Super_error module, and clean up Super_error. https://github.com/rescript-lang/rescript-compiler/pull/6199
40-
4146
# 11.0.0-alpha.4
4247

4348
#### :rocket: Main New Feature

jscomp/common/bs_version.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
* You should have received a copy of the GNU Lesser General Public License
2222
* along with this program; if not, write to the Free Software
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
24-
let version = "11.0.0-alpha.5"
24+
let version = "11.0.0-alpha.6"
2525
let header = "// Generated by ReScript, PLEASE EDIT WITH CARE"
2626
let package_name = ref "rescript"

package-lock.json

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rescript",
3-
"version": "11.0.0-alpha.5",
3+
"version": "11.0.0-alpha.6",
44
"devDependencies": {
55
"mocha": "^10.1.0",
66
"nyc": "^15.0.0",

packages/std/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rescript/std",
3-
"version": "11.0.0-alpha.5",
3+
"version": "11.0.0-alpha.6",
44
"keywords": [
55
"rescript",
66
"stdlib",

0 commit comments

Comments
 (0)