Commit 3331908a authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.21

parent dedbcc65
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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
+13 −1
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.20"
version = "0.10.21"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"