File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ type opam_hashes = {
192192 opam_2_0_hash : string ;
193193 opam_2_1_hash : string ;
194194 opam_2_2_hash : string ;
195+ opam_2_3_hash : string ;
195196 opam_master_hash : string ;
196197}
197198
@@ -215,7 +216,11 @@ let opam_master_branch opam_master_hash =
215216 }
216217
217218let create_opam_branches opam_hashes =
218- let { opam_2_0_hash; opam_2_1_hash; opam_2_2_hash; opam_master_hash } =
219+ let { opam_2_0_hash;
220+ opam_2_1_hash;
221+ opam_2_2_hash;
222+ opam_2_3_hash;
223+ opam_master_hash } =
219224 opam_hashes
220225 in
221226 ( opam_master_hash,
@@ -245,6 +250,14 @@ let create_opam_branches opam_hashes =
245250 public_name = " opam-2.2" ;
246251 aliases = [] ;
247252 };
253+ {
254+ branch = " 2.3" ;
255+ hash = opam_2_3_hash;
256+ enable_0install_solver = true ;
257+ with_vendored_deps = true ;
258+ public_name = " opam-2.3" ;
259+ aliases = [] ;
260+ };
248261 opam_master_branch opam_master_hash;
249262 ] )
250263
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ type opam_hashes = {
4646 opam_2_0_hash : string ;
4747 opam_2_1_hash : string ;
4848 opam_2_2_hash : string ;
49+ opam_2_3_hash : string ;
4950 opam_master_hash : string ;
5051}
5152
You can’t perform that action at this time.
0 commit comments