Release openssl v0.10.21
This commit is contained in:
parent
dedbcc6570
commit
3331908a1d
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue