Skip to content

Commit

Permalink
Merge pull request #477 from cryspen/opam_0_7_2
Browse files Browse the repository at this point in the history
OCaml API: bump opam package version to 0.7.2
  • Loading branch information
franziskuskiefer authored Sep 30, 2024
2 parents 584c542 + 3542b9e commit 05c3d8f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ocaml/META
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name="hacl-star-raw"
version="0.7.1"
version="0.7.2"
description="EverCrypt with Ctypes bindings"
requires="ctypes ctypes.stubs"
archive(native)="ocamlevercrypt.cmxa"
Expand Down
10 changes: 5 additions & 5 deletions ocaml/hacl-star-raw.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "hacl-star-raw"
version: "0.7.1"
version: "0.7.2"
synopsis: "Auto-generated low-level OCaml bindings for EverCrypt/HACL*"
description: """
This package contains a snapshot of the EverCrypt crypto provider and
Expand All @@ -24,10 +24,10 @@ depends: [
conflicts: [
"ocaml-option-bytecode-only"
]
available: [
arch != "ppc64" & arch != "ppc32" & arch != "arm32" &
(os = "freebsd" | os-family != "bsd")
]
available:
arch != "ppc64" & arch != "ppc32" & arch != "arm32" & arch != "riscv64" &
os-family != "windows" &
os-family != "bsd"
build: [
[make "-C" "hacl-star-raw" "build-c" "-j" jobs]
[make "-C" "hacl-star-raw" "build-bindings" "-j" jobs]
Expand Down
3 changes: 3 additions & 0 deletions ocaml/hacl-star/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## 0.8.0 (Unreleased)
- API changes for all hash functions

## 0.7.2
- Compatibility with newer ctypes versions (#421)

## 0.7.1
- Significantly faster P-256 signature verification
- Added SHA-3 to EverCrypt hashing interface
Expand Down
7 changes: 2 additions & 5 deletions ocaml/hacl-star/hacl-star.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "hacl-star"
version: "0.7.1"
version: "0.7.2"
synopsis: "OCaml API for EverCrypt/HACL*"
description: """
Documentation for this library can be found
Expand All @@ -18,15 +18,12 @@ depends: [
"hacl-star-raw" {= version}
"zarith"
"cppo" {build}
"alcotest" {with-test & >= "1.1.0"}
"alcotest" {with-test & >= "1.8.0"}
"qcheck-core" {with-test & >= "0.20"}
"secp256k1-internal" {with-test}
"cstruct" {with-test}
"odoc" {with-doc}
]
available: [
os = "freebsd" | os-family != "bsd"
]
build: [
["dune" "subst"] {dev}
[
Expand Down

0 comments on commit 05c3d8f

Please sign in to comment.