From 4a1e1426c4ba2b73b663aaef3a555eda9c2b59f6 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 21 Feb 2024 17:47:18 -0500 Subject: [PATCH] Prepare for openssl-sys 0.9.101 release --- openssl-sys/CHANGELOG.md | 9 ++++++++- openssl-sys/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index 0dcc2e561..b9df8f1d7 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.9.101] - 2024-02-21 + +### Fixed + +* Fixed a bug where, when building with the `vendored` feature, this crate always needed to be rebuilt. + ## [v0.9.100] - 2024-02-19 ### Added @@ -587,7 +593,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.100..master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101..master +[v0.9.101]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100...openssl-sys-v0.9.101 [v0.9.100]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99...openssl-sys-v0.9.100 [v0.9.99]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98...openssl-sys-v0.9.99 [v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 02513d1ad..5c4174c84 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.100" +version = "0.9.101" authors = [ "Alex Crichton ", "Steven Fackler ",