Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# dev (2022-??) - ??
## Features/Changes
* Compiler: initial support for OCaml 5 (#1265)
* Compiler: bump magic number to match the 5.0.0~alpha0 release (#1288)
* Misc: switch to cmdliner.1.1.0
* Misc: remove old binaries jsoo_link, jsoo_fs
* Misc: remove uchar dep
Expand Down
6 changes: 3 additions & 3 deletions compiler/lib/magic_number.ml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ let current_exe =
| `V4_12 -> 29
| `V4_13 -> 30
| `V4_14 -> 31
| `V5_00 -> 31
| `V5_00 -> 32
in
"Caml1999X", v

Expand All @@ -94,7 +94,7 @@ let current_cmo =
| `V4_12 -> 29
| `V4_13 -> 30
| `V4_14 -> 31
| `V5_00 -> 31
| `V5_00 -> 32
in
"Caml1999O", v

Expand All @@ -111,7 +111,7 @@ let current_cma =
| `V4_12 -> 29
| `V4_13 -> 30
| `V4_14 -> 31
| `V5_00 -> 31
| `V5_00 -> 32
in
"Caml1999A", v

Expand Down