summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openssl/CHANGELOG.md11
-rw-r--r--openssl/Cargo.toml4
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"