diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index a4c7d93d..5d531325 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## [v0.10.29] - 2020-04-07 + +### Fixed + +* Fixed a memory leak in `X509Builder::append_extension`. + +### Added + +* Added `SslConnector::into_context` and `SslConnector::context`. +* Added `SslAcceptor::into_context` and `SslAcceptor::context`. +* Added `SslMethod::tls_client` and `SslMethod::tls_server`. +* Added `SslContextBuilder::set_cert_store`. +* Added `SslContextRef::verify_mode` and `SslRef::verify_mode`. +* Added `SslRef::is_init_finished`. +* Added `X509Object`. +* Added `X509StoreRef::objects`. + ## [v0.10.28] - 2020-02-04 ### Fixed @@ -430,7 +447,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.28...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.29...master +[v0.10.29]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.28...openssl-v0.10.29 [v0.10.28]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.27...openssl-v0.10.28 [v0.10.27]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.26...openssl-v0.10.27 [v0.10.26]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.25...openssl-v0.10.26 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 23d422f1..2d74c653 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.28" +version = "0.10.29" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" @@ -25,7 +25,7 @@ foreign-types = "0.3.1" lazy_static = "1" libc = "0.2" -openssl-sys = { version = "0.9.54", path = "../openssl-sys" } +openssl-sys = { version = "0.9.55", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"