From 24cb11835d7ae703e48c59a1898d572652c5137f Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Thu, 9 Jan 2025 09:23:28 +0900 Subject: [PATCH] Update OCaml to 5.3 Signed-off-by: Sora Morimoto --- .github/workflows/workflow.yml | 6 +++--- README.md | 8 ++++---- dist/index.js | 2 +- dist/post/index.js | 2 +- packages/setup-ocaml/src/version.ts | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 89b47ada..c27a4b9d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -52,15 +52,15 @@ jobs: - macos-latest - windows-latest ocaml-compiler: - - "5.2" + - "5.3" allow-prerelease-opam: - false include: - os: ubuntu-latest - ocaml-compiler: ocaml-variants.5.2.1+options,ocaml-option-flambda + ocaml-compiler: ocaml-variants.5.3.0+options,ocaml-option-flambda allow-prerelease-opam: false - os: ubuntu-latest - ocaml-compiler: "5.2" + ocaml-compiler: "5.3" allow-prerelease-opam: true runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 1a8f6408..c9b47bfc 100644 --- a/README.md +++ b/README.md @@ -158,11 +158,11 @@ The `ocaml-compiler` input supports the Semantic Versioning Specification, for m Examples: -- Exact package name: `ocaml-base-compiler.5.2.0` -- Combine multiple packages: `ocaml-variants.5.2.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static` +- Exact package name: `ocaml-base-compiler.5.3.0` +- Combine multiple packages: `ocaml-variants.5.3.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static` - Major versions: `4`, `5` -- Minor versions: `4.08`, `4.14`, `5.2`, `5.2.x` -- More specific versions: `~4.02.2`, `5.1.0` +- Minor versions: `4.08`, `4.14`, `5.3`, `5.3.x` +- More specific versions: `~4.02.2`, `5.3.0` ## Advanced Configurations diff --git a/dist/index.js b/dist/index.js index ee1c47a6..8f429c7b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -149726,7 +149726,7 @@ async function retrieveAllCompilerVersions() { const minor = major < 5 && _minor < 10 ? // ocaml-base-compiler.4.00.0, ocaml-base-compiler.4.01.0 `0${_minor}` - : // ocaml-base-compiler.5.2.0, ocaml-base-compiler.4.14.0 + : // ocaml-base-compiler.5.3.0, ocaml-base-compiler.4.14.2 _minor; const version = `${major}.${minor}.${patch}`; versions.add(version); diff --git a/dist/post/index.js b/dist/post/index.js index adc40876..667be861 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -114707,7 +114707,7 @@ async function retrieveAllCompilerVersions() { const minor = major < 5 && _minor < 10 ? // ocaml-base-compiler.4.00.0, ocaml-base-compiler.4.01.0 `0${_minor}` - : // ocaml-base-compiler.5.2.0, ocaml-base-compiler.4.14.0 + : // ocaml-base-compiler.5.3.0, ocaml-base-compiler.4.14.2 _minor; const version = `${major}.${minor}.${patch}`; versions.add(version); diff --git a/packages/setup-ocaml/src/version.ts b/packages/setup-ocaml/src/version.ts index dc03875d..1377862e 100644 --- a/packages/setup-ocaml/src/version.ts +++ b/packages/setup-ocaml/src/version.ts @@ -26,7 +26,7 @@ async function retrieveAllCompilerVersions() { major < 5 && _minor < 10 ? // ocaml-base-compiler.4.00.0, ocaml-base-compiler.4.01.0 `0${_minor}` - : // ocaml-base-compiler.5.2.0, ocaml-base-compiler.4.14.0 + : // ocaml-base-compiler.5.3.0, ocaml-base-compiler.4.14.2 _minor; const version = `${major}.${minor}.${patch}`; versions.add(version);