From fdc4951d7facefe59e1d166851859a6bc76ba905 Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Wed, 16 Sep 2026 16:43:09 +0200 Subject: [PATCH] Set version to 13.0.0-alpha.7 --- CHANGELOG.md | 16 ++++++++++++++++ compiler/common/bs_version.ml | 2 +- package.json | 2 +- packages/@rescript/belt/package.json | 2 +- packages/@rescript/darwin-arm64/package.json | 2 +- packages/@rescript/darwin-x64/package.json | 2 +- packages/@rescript/linux-arm64/package.json | 2 +- packages/@rescript/linux-x64/package.json | 2 +- packages/@rescript/runtime/package.json | 2 +- packages/@rescript/win32-x64/package.json | 2 +- rewatch/Cargo.lock | 2 +- rewatch/Cargo.toml | 2 +- yarn.config.cjs | 2 +- 13 files changed, 28 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a1336355d..890b5818c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,22 @@ > - :nail_care: [Polish] > - :house: [Internal] +# 13.0.0-alpha.7 (Unreleased) + +#### :boom: Breaking Change + +#### :eyeglasses: Spec Compliance + +#### :rocket: New Feature + +#### :bug: Bug fix + +#### :memo: Documentation + +#### :nail_care: Polish + +#### :house: Internal + # 13.0.0-alpha.6 #### :boom: Breaking Change diff --git a/compiler/common/bs_version.ml b/compiler/common/bs_version.ml index d33f0fc407..9ecc10f63e 100644 --- a/compiler/common/bs_version.ml +++ b/compiler/common/bs_version.ml @@ -21,5 +21,5 @@ * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *) -let version = "13.0.0-alpha.6" +let version = "13.0.0-alpha.7" let header = "// Generated by ReScript, PLEASE EDIT WITH CARE" diff --git a/package.json b/package.json index 50c42cffed..1351c427d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rescript", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript toolchain", "type": "module", "keywords": [ diff --git a/packages/@rescript/belt/package.json b/packages/@rescript/belt/package.json index e12d49333a..c1b53f8398 100644 --- a/packages/@rescript/belt/package.json +++ b/packages/@rescript/belt/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/belt", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "Extended utility and collection library for ReScript", "license": "MIT", "homepage": "https://rescript-lang.org", diff --git a/packages/@rescript/darwin-arm64/package.json b/packages/@rescript/darwin-arm64/package.json index e5c0bf036f..2bfe2d7490 100644 --- a/packages/@rescript/darwin-arm64/package.json +++ b/packages/@rescript/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/darwin-arm64", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript binaries for MacOS ARM64", "type": "module", "license": "(LGPL-3.0-or-later AND MIT)", diff --git a/packages/@rescript/darwin-x64/package.json b/packages/@rescript/darwin-x64/package.json index 3d7e7e7e4f..45e62b75aa 100644 --- a/packages/@rescript/darwin-x64/package.json +++ b/packages/@rescript/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/darwin-x64", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript binaries for MacOS x86_64", "type": "module", "license": "(LGPL-3.0-or-later AND MIT)", diff --git a/packages/@rescript/linux-arm64/package.json b/packages/@rescript/linux-arm64/package.json index 710ce52c04..5cc5e9f246 100644 --- a/packages/@rescript/linux-arm64/package.json +++ b/packages/@rescript/linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/linux-arm64", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript binaries for Linux ARM64", "type": "module", "license": "(LGPL-3.0-or-later AND MIT)", diff --git a/packages/@rescript/linux-x64/package.json b/packages/@rescript/linux-x64/package.json index 7ad6910a23..c37f73595c 100644 --- a/packages/@rescript/linux-x64/package.json +++ b/packages/@rescript/linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/linux-x64", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript binaries for Linux x86_64", "type": "module", "license": "(LGPL-3.0-or-later AND MIT)", diff --git a/packages/@rescript/runtime/package.json b/packages/@rescript/runtime/package.json index 79a4c22c74..39e8002cec 100644 --- a/packages/@rescript/runtime/package.json +++ b/packages/@rescript/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/runtime", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript runtime modules", "type": "module", "license": "MIT", diff --git a/packages/@rescript/win32-x64/package.json b/packages/@rescript/win32-x64/package.json index b17bd1462e..21ed4f8ca2 100644 --- a/packages/@rescript/win32-x64/package.json +++ b/packages/@rescript/win32-x64/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/win32-x64", - "version": "13.0.0-alpha.6", + "version": "13.0.0-alpha.7", "description": "ReScript binaries for Windows x86_64", "type": "module", "license": "(LGPL-3.0-or-later AND MIT)", diff --git a/rewatch/Cargo.lock b/rewatch/Cargo.lock index 993a5616b8..6957ca4bfe 100644 --- a/rewatch/Cargo.lock +++ b/rewatch/Cargo.lock @@ -1245,7 +1245,7 @@ dependencies = [ [[package]] name = "rescript" -version = "13.0.0-alpha.6" +version = "13.0.0-alpha.7" dependencies = [ "ahash", "anyhow", diff --git a/rewatch/Cargo.toml b/rewatch/Cargo.toml index 479037a9e9..9af30058db 100644 --- a/rewatch/Cargo.toml +++ b/rewatch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rescript" -version = "13.0.0-alpha.6" +version = "13.0.0-alpha.7" edition = "2024" rust-version = "1.91" diff --git a/yarn.config.cjs b/yarn.config.cjs index 5282da9e7a..b931c38669 100644 --- a/yarn.config.cjs +++ b/yarn.config.cjs @@ -14,7 +14,7 @@ const execPromise = util.promisify(exec); * @param {Yarn.Constraints.Context} ctx */ async function enforceCompilerMeta({ Yarn }) { - const EXPECTED_VERSION = "13.0.0-alpha.6"; + const EXPECTED_VERSION = "13.0.0-alpha.7"; for (const workspace of Yarn.workspaces()) { const { ident } = workspace.pkg;