summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openssl/CHANGELOG.md11
-rw-r--r--openssl/Cargo.toml2
2 files changed, 12 insertions, 1 deletions
diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md
index 802b1ea6..2e6e6b81 100644
--- a/openssl/CHANGELOG.md
+++ b/openssl/CHANGELOG.md
@@ -2,6 +2,17 @@
## [Unreleased]
+## [v0.10.25] - 2019-10-02
+
+### Fixed
+
+* Fixed a memory leak in `EcdsaSig::from_private_components` when using OpenSSL 1.0.x.
+
+### Added
+
+* Added support for Ed25519 and Ed448 keys.
+* Implemented `ToOwned` for `PKeyRef` and `Clone` for `PKey`.
+
## [v0.10.24] - 2019-07-19
### Fixed
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index f9200740..e1f750c9 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl"
-version = "0.10.24"
+version = "0.10.25"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"