diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index ccfb29190..37f35e0a6 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [v0.9.103] - 2024-07-20 + +### Added + +* Added several functions and constants for datagram `BIO`s. +* Added `EVP_PKEY_set1_DSA`, `EVP_PKEY_set1_DH`, and `EVP_PKEY_set1_EC_KEY`. +* Added several functions related to QUIC support. + ## [v0.9.102] - 2024-03-28 ### Added @@ -599,7 +607,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.102..master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103..master +[v0.9.103]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102...openssl-sys-v0.9.103 [v0.9.102]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101...openssl-sys-v0.9.102 [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 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 99195a303..131ebe684 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.102" +version = "0.9.103" authors = [ "Alex Crichton ", "Steven Fackler ", diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index 2f72808a8..d734fbbce 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [v0.10.65] - 2024-07-20 + +### Fixed + +* Ensure we are initialized in `MessageDigest::from_nid`, `Md::from_nid`, `Md::fetch` + +### Changed + +* Expose `SslContextBuilder::set_keylog_callback` on BoringSSL + ## [v0.10.64] - 2024-02-19 ### Added @@ -892,7 +902,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...master +[v0.10.65]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...openssl-v0.10.65 [v0.10.64]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64 [v0.10.63]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63 [v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index b85254916..bb9439828 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.64" +version = "0.10.65" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" @@ -30,7 +30,7 @@ libc = "0.2" once_cell = "1.5.2" openssl-macros = { version = "0.1.0", path = "../openssl-macros" } -ffi = { package = "openssl-sys", version = "0.9.100", path = "../openssl-sys" } +ffi = { package = "openssl-sys", version = "0.9.103", path = "../openssl-sys" } [dev-dependencies] hex = "0.3"