Skip to content

Commit 86b4b26

Browse files
authored
Merge pull request #1886 from voodoos/index-magic-number
index: bump magic number and update opam pkg
2 parents 3b3d3d1 + 9e88322 commit 86b4b26

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
merlin 5.4.1
2+
============
3+
Mon Jan 13 10:55:42 CET 2025
4+
5+
+ ocaml-index
6+
- Bump magic number after index file format change (#1886)
7+
18
merlin 5.4
29
==========
310
Fri Jan 10 17:55:42 CET 2025

ocaml-index.opam

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# This file is generated by dune, edit dune-project instead
21
opam-version: "2.0"
32
synopsis: "A tool that indexes value usages from cmt files"
43
description:
@@ -10,8 +9,8 @@ homepage: "https://github.com/ocaml/merlin/ocaml-index"
109
bug-reports: "https://github.com/ocaml/merlin/issues"
1110
depends: [
1211
"dune" {>= "3.0.0"}
13-
"ocaml" {>= "5.2"}
14-
"merlin-lib" {>= "5.1-502"}
12+
"ocaml" {>= "5.3"}
13+
"merlin-lib" {= version}
1514
"odoc" {with-doc}
1615
]
1716
build: [

src/ocaml/utils/config.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ and ast_impl_magic_number = "Caml1999M035"
4949
and ast_intf_magic_number = "Caml1999N035"
5050
and cmxs_magic_number = "Caml1999D035"
5151
and cmt_magic_number = "Caml1999T035"
52-
and index_magic_number = "Merl2023I002"
52+
and index_magic_number = "Merl2023I003"
5353

5454
let interface_suffix = ref ".mli"
5555
let flat_float_array = true

0 commit comments

Comments
 (0)