diff options
author | Steven Fackler <sfackler@gmail.com> | 2019-05-08 18:46:43 -0700 |
---|---|---|
committer | Steven Fackler <sfackler@gmail.com> | 2019-05-08 18:46:43 -0700 |
commit | 6686092edf613c6117611465595f00da5106bb19 (patch) | |
tree | 8208716bf1408dd41669208055ee63bebad914be /openssl | |
parent | aabaf979355c49b29f8f61ca10de30e391c27ee9 (diff) | |
download | rust-openssl-6686092edf613c6117611465595f00da5106bb19.zip |
Release openssl v0.10.22
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/CHANGELOG.md | 11 | ||||
-rw-r--r-- | openssl/Cargo.toml | 4 |
2 files changed, 11 insertions, 4 deletions
diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index abd856bb..44267f45 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.10.22] + +### Added + +* Added support for the LibreSSL 2.9.x series. + ## [v0.10.21] - 2019-04-30 ### Fixed @@ -353,8 +359,9 @@ Look at the [release tags] for information about older releases. -[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 +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.22...master +[v0.10.22]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.21...openssl-v0.10.22 +[v0.10.21]: 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 c2701f73..0f36ff0a 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.21" +version = "0.10.22" 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.44", path = "../openssl-sys" } +openssl-sys = { version = "0.9.45", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3" |