Skip to content

Commit

Permalink
Merge pull request #2674 from kc284/master
Browse files Browse the repository at this point in the history
Defined the dundee-plus release
  • Loading branch information
johnelse committed Jun 13, 2016
2 parents 377c430 + 48a72fb commit 8c108e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ocaml/idl/datamodel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,12 @@ let get_product_releases in_product_since =
| x::xs -> if x=in_product_since then "closed"::x::xs else go_through_release_order xs
in go_through_release_order release_order

let dundee_plus_release =
{ internal = get_product_releases rel_dundee_plus
; opensource=get_oss_releases None
; internal_deprecated_since=None
}

let dundee_release =
{ internal = get_product_releases rel_dundee
; opensource=get_oss_releases None
Expand Down
2 changes: 2 additions & 0 deletions ocaml/idl/datamodel_types.ml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ let rel_creedence = "creedence"
let rel_cream = "cream"
let rel_indigo = "indigo"
let rel_dundee = "dundee"
let rel_dundee_plus = "dundee-plus"
let rel_ely = "ely"

let release_order =
Expand All @@ -75,6 +76,7 @@ let release_order =
; rel_cream
; rel_indigo
; rel_dundee
; rel_dundee_plus
; rel_ely
]

Expand Down

0 comments on commit 8c108e2

Please sign in to comment.