From 308f0405bd6bee0d537564df28fe0b2323995e1e Mon Sep 17 00:00:00 2001 From: Ivan Nikulin Date: Thu, 3 Aug 2023 12:43:16 +0100 Subject: [PATCH] Release 3.0.2 --- Cargo.toml | 2 +- RELEASE_NOTES | 5 +++++ boring-sys/build.rs | 6 +----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 92f6be69..059b692c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "3.0.1" +version = "3.0.2" repository = "https://github.com/cloudflare/boring" edition = "2021" diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 80f933a9..5e2fb857 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,3 +1,8 @@ +3.0.2 +- 2023-08-03 Fix feature gates for fips-link-precompiled +- 2023-07-28 Switch boring from lazy_static to once_cell +- 2023-08-01 Clean up and remove some unsafe code from ffi callbacks + 3.0.1 - 2023-08-01 Reduce release bundle size by excluding PQ test data - 2023-07-28 Adding hmac.h to included headers diff --git a/boring-sys/build.rs b/boring-sys/build.rs index 026d39f8..195f3949 100644 --- a/boring-sys/build.rs +++ b/boring-sys/build.rs @@ -627,11 +627,7 @@ fn main() { let include_path = env::var("BORING_BSSL_INCLUDE_PATH").unwrap_or_else(|_| { let src_path = get_boringssl_source_path(); - if Path::new(&src_path) - .join("include") - .join("x509v3.h") - .exists() - { + if Path::new(&src_path).join("include").exists() { format!("{}/include", &src_path) } else { format!("{}/src/include", &src_path)