diff --git a/Cargo.toml b/Cargo.toml index 1581b939..d22c0e5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "4.10.3" +version = "4.11.0" repository = "https://github.com/cloudflare/boring" edition = "2021" @@ -19,9 +19,9 @@ tag-prefix = "" publish = false [workspace.dependencies] -boring-sys = { version = "4.10.3", path = "./boring-sys" } -boring = { version = "4.10.3", path = "./boring" } -tokio-boring = { version = "4.10.3", path = "./tokio-boring" } +boring-sys = { version = "4.11.0", path = "./boring-sys" } +boring = { version = "4.11.0", path = "./boring" } +tokio-boring = { version = "4.11.0", path = "./tokio-boring" } bindgen = { version = "0.70.1", default-features = false, features = ["runtime"] } bytes = "1" diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 8e36ab05..c205d73b 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,3 +1,8 @@ +4.11.0 +- 2024-10-17 boring-sys: include HPKE header file for bindgen +- 2024-10-17 Add "fips-compat" feature +- 2024-09-25 Create semgrep.yml + 4.10.3 - 2024-09-21 Set MSRV to 1.70 (#279) diff --git a/boring-sys/build/main.rs b/boring-sys/build/main.rs index 9b65492a..7966e215 100644 --- a/boring-sys/build/main.rs +++ b/boring-sys/build/main.rs @@ -728,6 +728,8 @@ fn main() { "des.h", "dtls1.h", "hkdf.h", + #[cfg(not(feature = "fips"))] + "hpke.h", "hmac.h", "hrss.h", "md4.h",