From b6d968b3785564e80ec3bc80bb4c7c9eac69f1c7 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 18 May 2019 12:10:27 -0700 Subject: [PATCH] Release openssl-sys v0.9.47 --- openssl-sys/CHANGELOG.md | 9 ++++++++- openssl-sys/Cargo.toml | 2 +- openssl/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index c7615401..352dd5a2 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.9.47] - 2019-05-18 + +### Added + +* Added `SSL_CTX_add_client_CA`. + ## [v0.9.46] - 2019-05-08 ### Added @@ -34,7 +40,8 @@ * 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.46...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.47...master +[v0.9.47]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.46...openssl-sys-v0.9.47 [v0.9.46]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.45...openssl-sys-v0.9.46 [v0.9.45]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.44...openssl-sys-v0.9.45 [v0.9.44]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.43...openssl-sys-v0.9.44 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 0b864020..bad6996a 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.46" +version = "0.9.47" authors = ["Alex Crichton ", "Steven Fackler "] license = "MIT" diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 0f36ff0a..0b1e5005 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -25,7 +25,7 @@ foreign-types = "0.3.1" lazy_static = "1" libc = "0.2" -openssl-sys = { version = "0.9.45", path = "../openssl-sys" } +openssl-sys = { version = "0.9.47", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"