Skip to content

Commit

Permalink
Add Nile release
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Hoes <[email protected]>
  • Loading branch information
robhoes committed Feb 14, 2024
1 parent f5dcf8a commit a0aece9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion ocaml/idl/datamodel_types.ml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ let rel_stockholm = "stockholm"

let rel_stockholm_psr = "stockholm_psr"

let rel_nile_preview = "nile-preview"

let rel_nile = "nile"

type api_release = {
code_name: string option
; version_major: int
Expand Down Expand Up @@ -335,12 +339,19 @@ let release_order_full =
; release_date= Some "November 2020"
}
; {
code_name= Some "nile-preview"
code_name= Some rel_nile_preview
; version_major= 2
; version_minor= 20
; branding= "XenServer 8 Preview"
; release_date= Some "August 2023"
}
; {
code_name= Some rel_nile
; version_major= 2
; version_minor= 21
; branding= "XenServer 8"
; release_date= None
}
]
(* When you add a new release, use the version number of the latest release, "Unreleased"
for the branding, and Some "" for the release date, until the actual values are finalised. *)
Expand Down

0 comments on commit a0aece9

Please sign in to comment.