Skip to content

Commit 62c5b30

Browse files
committed
Add an opam-2.5 binary
1 parent 6505dcf commit 62c5b30

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
unreleased
22
----------
33

4+
- Add opam-2.5 (@MisterDA, #246, #249)
45
- Compare by versions within `Distro.compare` (@dra27, #247)
56

67
v8.3.3 2025-10-18

src-opam/opam.ml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ type opam_hashes = {
194194
opam_2_2_hash : string;
195195
opam_2_3_hash : string;
196196
opam_2_4_hash : string;
197+
opam_2_5_hash : string;
197198
opam_master_hash : string;
198199
}
199200

@@ -223,6 +224,7 @@ let create_opam_branches opam_hashes =
223224
opam_2_2_hash;
224225
opam_2_3_hash;
225226
opam_2_4_hash;
227+
opam_2_5_hash;
226228
opam_master_hash;
227229
} =
228230
opam_hashes
@@ -270,6 +272,14 @@ let create_opam_branches opam_hashes =
270272
public_name = "opam-2.4";
271273
aliases = [];
272274
};
275+
{
276+
branch = "2.5";
277+
hash = opam_2_5_hash;
278+
enable_0install_solver = true;
279+
with_vendored_deps = true;
280+
public_name = "opam-2.5";
281+
aliases = [];
282+
};
273283
opam_master_branch opam_master_hash;
274284
] )
275285

src-opam/opam.mli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ type opam_hashes = {
4747
opam_2_2_hash : string;
4848
opam_2_3_hash : string;
4949
opam_2_4_hash : string;
50+
opam_2_5_hash : string;
5051
opam_master_hash : string;
5152
}
5253

0 commit comments

Comments
 (0)