From 3331908a1dff0aa1aa03ae2a11f0a33cc1adef6e Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 30 Apr 2019 21:59:02 -0700 Subject: [PATCH] Release openssl v0.10.21 --- openssl-sys/CHANGELOG.md | 3 ++- openssl/CHANGELOG.md | 14 +++++++++++++- openssl/Cargo.toml | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index 6c080bee..8c3ff660 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -22,5 +22,6 @@ * 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.43...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.44...master +[v0.9.44]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.44...openssl-sys-v0.9.44 [v0.9.43]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.42...openssl-sys-v0.9.43 diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index 0910423d..abd856bb 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,17 @@ ## [Unreleased] +## [v0.10.21] - 2019-04-30 + +### Fixed + +* Fixed overly conservatifve buffer size checks in `Crypter` when using stream ciphers. + +### Added + +* Added bindings to envelope encryption APIs. +* Added `PkeyRef::size`. + ## [v0.10.20] - 2019-03-20 ### Added @@ -342,7 +353,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.20...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.21...master +[v0.10.20]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.20...openssl-v0.10.21 [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 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 3f196625..c2701f73 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.20" +version = "0.10.21" 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.43", path = "../openssl-sys" } +openssl-sys = { version = "0.9.44", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"