From 886a1df226b9d0767fbd59e706b2b1e3e0f9e381 Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Wed, 29 May 2024 20:48:16 +0200 Subject: [PATCH] Version 2.25.1 --- Changes.md | 4 ++++ examples/deadcode/package-lock.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/Version.ml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Changes.md b/Changes.md index b0014e71..1132ede7 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,7 @@ +# 2.25.1 + +- Fix fatal error for OCaml 5.2. + # 2.25.0 - Support OCaml 5.2. diff --git a/examples/deadcode/package-lock.json b/examples/deadcode/package-lock.json index 024cfc8b..17c7403e 100644 --- a/examples/deadcode/package-lock.json +++ b/examples/deadcode/package-lock.json @@ -20,7 +20,7 @@ } }, "../..": { - "version": "2.25.0", + "version": "2.25.1", "license": "MIT", "bin": { "reanalyze.exe": "_build/install/default/bin/reanalyze.exe" diff --git a/package-lock.json b/package-lock.json index 5741f1ee..c08217d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "reanalyze", - "version": "2.25.0", + "version": "2.25.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "reanalyze", - "version": "2.25.0", + "version": "2.25.1", "license": "MIT", "bin": { "reanalyze.exe": "_build/install/default/bin/reanalyze.exe" diff --git a/package.json b/package.json index af3e3c2b..5f5708d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reanalyze", - "version": "2.25.0", + "version": "2.25.1", "private": true, "description": "Analyzers for Dead Code/Types and termination", "license": "MIT", diff --git a/src/Version.ml b/src/Version.ml index 31b56ffb..714a4054 100644 --- a/src/Version.ml +++ b/src/Version.ml @@ -2,4 +2,4 @@ (* CREATED BY reanalyze/scripts/bump_version_module.js *) (* DO NOT MODIFY BY HAND, WILL BE AUTOMATICALLY UPDATED BY npm version *) -let version = "2.25.0"; +let version = "2.25.1";