diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index f72879c296..f3a125d642 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,18 @@ ## [Unreleased] +## [v0.10.37] - 2021-10-27 + +### Fixed + +* Fixed linkage against OpenSSL distributions built with `no-chacha`. + +### Added + +* Added `BigNumRef::to_vec_padded`. +* Added `X509Name::from_der` and `X509NameRef::to_der`. +* Added `BigNum::new_secure`, `BigNumReef::set_const_time`, `BigNumref::is_const_time`, and `BigNumRef::is_secure`. + ## [v0.10.36] - 2021-08-17 ### Added @@ -556,7 +568,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.36...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.37...master +[v0.10.37]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.36...openssl-v0.10.37 [v0.10.36]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.35...openssl-v0.10.36 [v0.10.35]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.34...openssl-v0.10.35 [v0.10.34]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...openssl-v0.10.34 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 7385d5c47b..69af2857a1 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.36" +version = "0.10.37" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" @@ -26,7 +26,7 @@ foreign-types = "0.3.1" libc = "0.2" once_cell = "1.5.2" -ffi = { package = "openssl-sys", version = "0.9.66", path = "../openssl-sys" } +ffi = { package = "openssl-sys", version = "0.9.68", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"