diff --git a/Changes.md b/Changes.md index 0cb01c1e..b0014e71 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,7 @@ +# 2.25.0 + +- Support OCaml 5.2. + # 2.24.0 - Add `-native-build-target` option to explicitly specify a build target path for native OCaml projects. diff --git a/examples/deadcode/package-lock.json b/examples/deadcode/package-lock.json index c979f18b..024cfc8b 100644 --- a/examples/deadcode/package-lock.json +++ b/examples/deadcode/package-lock.json @@ -20,7 +20,7 @@ } }, "../..": { - "version": "2.24.0", + "version": "2.25.0", "license": "MIT", "bin": { "reanalyze.exe": "_build/install/default/bin/reanalyze.exe" diff --git a/package-lock.json b/package-lock.json index 283e9171..5741f1ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "reanalyze", - "version": "2.24.0", + "version": "2.25.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "reanalyze", - "version": "2.24.0", + "version": "2.25.0", "license": "MIT", "bin": { "reanalyze.exe": "_build/install/default/bin/reanalyze.exe" diff --git a/package.json b/package.json index eeb4272e..af3e3c2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reanalyze", - "version": "2.24.0", + "version": "2.25.0", "private": true, "description": "Analyzers for Dead Code/Types and termination", "license": "MIT", diff --git a/src/Version.ml b/src/Version.ml index 5b9ccfd8..31b56ffb 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.24.0"; +let version = "2.25.0";