From 9ca6cfe2e68e676afb9f160a6efc656473d26e6c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 28 May 2025 19:05:10 -0400 Subject: [PATCH] Release openssl v0.10.73 and openssl-sys v0.9.109 --- openssl-sys/CHANGELOG.md | 10 +++++++++- openssl-sys/Cargo.toml | 2 +- openssl/CHANGELOG.md | 13 ++++++++++++- openssl/Cargo.toml | 4 ++-- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index d19db72c8..f153892ab 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [v0.9.109] - 2025-05-28 + +### Fixed + +* Fixed building with `vcpkg`, a statically linked OpenSSL, and rust 1.87.0. +* Fixed building on the latest BoringSSL. + ## [v0.9.108] - 2025-04-30 ### Added @@ -648,7 +655,8 @@ Fixed builds against OpenSSL built with `no-cast`. * Added `X509_verify` and `X509_REQ_verify`. * Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.108..master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.109..master +[v0.9.109]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.108...openssl-sys-v0.9.109 [v0.9.108]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.107...openssl-sys-v0.9.108 [v0.9.107]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.106...openssl-sys-v0.9.107 [v0.9.106]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.105...openssl-sys-v0.9.106 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index c30ca97c5..2ca5ce93b 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.108" +version = "0.9.109" authors = [ "Alex Crichton ", "Steven Fackler ", diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index da2db978f..250c619ea 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [v0.10.73] - 2025-05-28 + +### Fixed + +* Fixed building on the latest BoringSSL. + +### Changed + +* Replaced ctest2 with ctest in systest. + ## [v0.10.72] - 2025-04-04 ### Fixed @@ -969,7 +979,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.73...master +[v0.10.73]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.73 [v0.10.72]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.71...openssl-v0.10.72 [v0.10.71]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.70...openssl-v0.10.71 [v0.10.70]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 75d440496..c8e809e96 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.72" +version = "0.10.73" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" @@ -32,7 +32,7 @@ libc = "0.2" once_cell = "1.5.2" openssl-macros = { version = "0.1.1", path = "../openssl-macros" } -ffi = { package = "openssl-sys", version = "0.9.107", path = "../openssl-sys" } +ffi = { package = "openssl-sys", version = "0.9.109", path = "../openssl-sys" } [dev-dependencies] hex = "0.4"