Release openssl v0.10.20
This commit is contained in:
parent
a6b6648a62
commit
576de0eaa2
|
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [v0.10.19] - 2019-03-01
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -333,8 +342,9 @@
|
||||||
|
|
||||||
Look at the [release tags] for information about older releases.
|
Look at the [release tags] for information about older releases.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.19...master
|
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.20...master
|
||||||
[v0.10.18]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.18...openssl-v0.10.19
|
[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.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.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
|
[v0.10.16]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.15...openssl-v0.10.16
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "openssl"
|
name = "openssl"
|
||||||
version = "0.10.19"
|
version = "0.10.20"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
description = "OpenSSL bindings"
|
description = "OpenSSL bindings"
|
||||||
|
|
@ -25,7 +25,7 @@ foreign-types = "0.3.1"
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
|
|
||||||
openssl-sys = { version = "0.9.42", path = "../openssl-sys" }
|
openssl-sys = { version = "0.9.43", path = "../openssl-sys" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempdir = "0.3"
|
tempdir = "0.3"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue