Skip to content

Commit 97609bd

Browse files
Let's not mention v13 yet
1 parent 2f8ae85 commit 97609bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

markdown-pages/blog/release-12-0-0.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
author: rescript-team
33
date: "2025-11-25"
44
previewImg: /blog/compiler_release_12_0.webp
5+
articleImg: /blog/compiler_release_12_0.webp
56
badge: release
67
title: "Announcing ReScript 12"
78
description: |
@@ -38,7 +39,7 @@ Projects that previously published custom runtime shims should revisit their set
3839
### Updated bitwise operator surface
3940

4041
Legacy OCaml-style bitwise functions such as `land`, `lor`, and `lsl` are deprecated.
41-
They continue to work in v12 with warnings but will be removed in v13.
42+
They continue to work in v12 with warnings but will be removed in a future version.
4243
ReScript now prefers unified operator syntax: `&&&`, `|||`, `^^^`, and `~~~` cover AND, OR, XOR, and NOT for both `int` and `bigint`.
4344

4445
### API naming alignment
@@ -89,7 +90,7 @@ Projects attempting to compile with v3 will receive an explicit error, ensuring
8990
The standard library continues its shift away from OCaml-specific aliases.
9091
Functions such as `succ`, `pred`, `abs_float`, `string_of_int`, `fst`, `raise`, and the `char` type are now deprecated.
9192
The recommended replacements are the JavaScript-aligned counterparts in `Int`, `Float`, `Bool`, `Pair`, and related modules, alongside the `throw` keyword for exceptions.
92-
References to the OCaml composition operators (`|>`, `@@`) now warn and will be removed in v13; the ReScript pipe operator `->` replaces them.
93+
References to the OCaml composition operators (`|>`, `@@`) now warn and will be removed in a future version; the ReScript pipe operator `->` replaces them.
9394
The migration tool highlights deprecated usage, and incremental cleanups are encouraged so your codebase is ready before the next major release.
9495

9596
## New features

0 commit comments

Comments
 (0)