Skip to content

Commit 5089e74

Browse files
authored
LCU Update May 2023 (#166)
1 parent f3a1a84 commit 5089e74

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src-opam/distro.ml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ type win10_ltsc = [ `Ltsc2015 | `Ltsc2016 | `Ltsc2019 | `Ltsc2022 ]
4141

4242
type win10_lcu =
4343
[ `LCU
44+
| `LCU20230509
4445
| `LCU20230411
4546
| `LCU20230314
4647
| `LCU20230214
@@ -68,12 +69,17 @@ type win10_lcu =
6869

6970
type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]
7071

71-
let win10_current_lcu = `LCU20230411
72+
let win10_current_lcu = `LCU20230509
7273

7374
type win10_revision = win10_release * win10_lcu option [@@deriving sexp]
7475

7576
let win10_lcus : ('a * int * win10_release list) list =
7677
[
78+
(`LCU20230509, 5026370, [ `V21H2 ]);
79+
(`LCU20230509, 5026361, [ `V21H1 ]);
80+
(`LCU20230509, 5026362, [ `V1809 ]);
81+
(`LCU20230509, 5026363, [ `V1607 ]);
82+
(`LCU20230509, 5026382, [ `V1507 ]);
7783
(`LCU20230411, 5025230, [ `V21H2 ]);
7884
(`LCU20230411, 5025221, [ `V21H1 ]);
7985
(`LCU20230411, 5025229, [ `V1809 ]);

src-opam/distro.mli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ type win_all = [ win10_release | win10_ltsc ] [@@deriving sexp]
4949

5050
type win10_lcu =
5151
[ `LCU
52+
| `LCU20230509
5253
| `LCU20230411
5354
| `LCU20230314
5455
| `LCU20230214

0 commit comments

Comments
 (0)