Release openssl 0.10.12
This commit is contained in:
parent
8f94c13a3e
commit
a548913e44
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -2,6 +2,18 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.10.12] - 2018-09-13
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fixed handling of SNI callbacks during renegotiation.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added `SslRef::get_shutdown` and `SslRef::set_shutdown`.
|
||||||
|
* Added support for SRTP in DTLS sessions.
|
||||||
|
* Added support for LibreSSL 2.8.0.
|
||||||
|
|
||||||
## [v0.10.11] - 2018-08-04
|
## [v0.10.11] - 2018-08-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -250,7 +262,8 @@
|
||||||
|
|
||||||
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.11...master
|
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.12...master
|
||||||
|
[v0.10.12]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.11...openssl-v0.10.12
|
||||||
[v0.10.11]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.10...openssl-v0.10.11
|
[v0.10.11]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.10...openssl-v0.10.11
|
||||||
[v0.10.10]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.9...openssl-v0.10.10
|
[v0.10.10]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.9...openssl-v0.10.10
|
||||||
[v0.10.9]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.8...openssl-v0.10.9
|
[v0.10.9]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.8...openssl-v0.10.9
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "openssl"
|
name = "openssl"
|
||||||
version = "0.10.11"
|
version = "0.10.12"
|
||||||
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.35", path = "../openssl-sys" }
|
openssl-sys = { version = "0.9.36", path = "../openssl-sys" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempdir = "0.3"
|
tempdir = "0.3"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue