From 576de0eaa24e6eb48842044cd5f0ef912d10c9f3 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 20 Mar 2019 10:45:10 -0400 Subject: [PATCH] Release openssl v0.10.20 --- openssl/CHANGELOG.md | 14 ++++++++++++-- openssl/Cargo.toml | 4 ++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index abc3a49d..0910423d 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [v0.10.20] - 2019-03-20 + +### Added + +* Added `CmsContentInfo::from_der` and `CmsContentInfo::encrypt`. +* Added `X509Ref::verify` and `X509ReqRef::verify`. +* Implemented `PartialEq` and `Eq` for `MessageDigest`. +* Added `MessageDigest::type_` and `EcGroupRef::curve_name`. + ## [v0.10.19] - 2019-03-01 ### Added @@ -333,8 +342,9 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.19...master -[v0.10.18]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.18...openssl-v0.10.19 +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.20...master +[v0.10.20]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.19...openssl-v0.10.20 +[v0.10.19]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.18...openssl-v0.10.19 [v0.10.18]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.17...openssl-v0.10.18 [v0.10.17]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.16...openssl-v0.10.17 [v0.10.16]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.15...openssl-v0.10.16 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 32a0d3a1..3f196625 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.19" +version = "0.10.20" 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.42", path = "../openssl-sys" } +openssl-sys = { version = "0.9.43", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"