Skip to content

Commit 90df8dc

Browse files
authored
OCaml 5.2.1 (#7201)
1 parent 81a5081 commit 90df8dc

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.devcontainer/postCreate.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Install dev dependencies from OPAM
44
opam init -y --bare --disable-sandboxing
5-
opam switch create 5.2.0 --packages ocaml-option-static
5+
opam switch create 5.2.1 --packages ocaml-option-static
66
opam install . --deps-only -y
77

88
# For IDE support, install the OCaml language server

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,23 +87,23 @@ jobs:
8787
matrix:
8888
include:
8989
- os: ubuntu-latest # x64
90-
ocaml_compiler: ocaml-variants.5.2.0+options,ocaml-option-static
90+
ocaml_compiler: ocaml-variants.5.2.1+options,ocaml-option-static
9191
upload_binaries: true
9292
upload_libs: true
9393
# Build the playground compiler and run the benchmarks on the fastest runner
9494
build_playground: true
9595
benchmarks: true
9696
- os: buildjet-2vcpu-ubuntu-2204-arm # ARM
97-
ocaml_compiler: ocaml-variants.5.2.0+options,ocaml-option-static
97+
ocaml_compiler: ocaml-variants.5.2.1+options,ocaml-option-static
9898
upload_binaries: true
9999
- os: macos-13 # x64
100-
ocaml_compiler: 5.2.0
100+
ocaml_compiler: 5.2.1
101101
upload_binaries: true
102102
- os: macos-14 # ARM
103-
ocaml_compiler: 5.2.0
103+
ocaml_compiler: 5.2.1
104104
upload_binaries: true
105105
- os: windows-latest
106-
ocaml_compiler: 5.2.0
106+
ocaml_compiler: 5.2.1
107107
upload_binaries: true
108108

109109
# Verify that the compiler still builds with older OCaml versions

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
- AST cleanup: Represent the arity of uncurried function definitions directly in the AST. https://github.com/rescript-lang/rescript/pull/7197
2828
- AST cleanup: Remove Pexp_function from the AST. https://github.com/rescript-lang/rescript/pull/7198
2929
- Remove unused code from Location and Rescript_cpp modules. https://github.com/rescript-lang/rescript/pull/7150
30+
- Build with OCaml 5.2.1. https://github.com/rescript-lang/rescript-compiler/pull/7201
3031

3132
# 12.0.0-alpha.5
3233

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Make sure you have [opam](https://opam.ocaml.org/doc/Install.html) installed on
4747
opam init
4848

4949
# Any recent OCaml version works as a development compiler
50-
opam switch create 5.2.0 # can also create local switch with opam switch create
50+
opam switch create 5.2.1 # can also create local switch with opam switch create
5151

5252
# Install dev dependencies from OPAM
5353
opam install . --deps-only --with-test --with-dev-setup -y

0 commit comments

Comments
 (0)