Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ocaml/idl/datamodel_certificate.ml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ let t =
"Date before which the certificate is valid"
; field ~qualifier:StaticRO ~lifecycle ~ty:String "fingerprint"
~default_value:(Some (VString ""))
"The certificate's fingerprint / hash"
"The certificate's SHA256 fingerprint / hash"
]
~messages:[] ()
2 changes: 1 addition & 1 deletion ocaml/idl/datamodel_common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ open Datamodel_roles
to leave a gap for potential hotfixes needing to increment the schema version.*)
let schema_major_vsn = 5

let schema_minor_vsn = 767
let schema_minor_vsn = 768

(* Historical schema versions just in case this is useful later *)
let rio_schema_major_vsn = 5
Expand Down
2 changes: 1 addition & 1 deletion ocaml/idl/schematest.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let hash x = Digest.string x |> Digest.to_hex

(* BEWARE: if this changes, check that schema has been bumped accordingly in
ocaml/idl/datamodel_common.ml, usually schema_minor_vsn *)
let last_known_schema_hash = "95077aed35b715c362c7cf98902de578"
let last_known_schema_hash = "8ff8c73b261e332b889583c8b2df5ecc"

let current_schema_hash : string =
let open Datamodel_types in
Expand Down