diff options
| author | Steven Fackler <[email protected]> | 2018-02-12 09:52:06 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2018-02-12 10:56:06 -0800 |
| commit | 9f35b74c1de992d3cdc511bc21fc995773874a51 (patch) | |
| tree | 50b052b17902612785ab52626e994b65ce6971ed | |
| parent | Merge pull request #836 from sfackler/cert-store-leak (diff) | |
| download | rust-openssl-openssl-sys-v0.9.25.tar.xz rust-openssl-openssl-sys-v0.9.25.zip | |
Release openssl 0.10.3 and openssl-sys 0.9.25openssl-v0.10.3openssl-sys-v0.9.25
| -rw-r--r-- | CHANGELOG.md | 11 | ||||
| -rw-r--r-- | openssl-sys/Cargo.toml | 2 | ||||
| -rw-r--r-- | openssl/Cargo.toml | 4 |
3 files changed, 13 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 210c0052..63cf5cc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,17 @@ ## [Unreleased] +## [v0.10.3] - 2018-02-12 + ### Added * OpenSSL is now automatically detected on FreeBSD systems. +* Added `GeneralName` accessors for `rfc822Name` and `uri` variants. +* Added DES-EDE3 support. + +### Fixed + +* Fixed a memory leak in `X509StoreBuilder::add_cert`. ## [v0.10.2] - 2018-01-11 @@ -83,7 +91,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.2...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.3...master +[v0.10.3]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.2...openssl-v0.10.3 [v0.10.2]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.1...openssl-v0.10.2 [v0.10.1]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.0...openssl-v0.10.1 [v0.10.0]: https://github.com/sfackler/rust-openssl/compare/v0.9.23...openssl-v0.10.0 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 4a2abcb0..291e7e6a 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.24" +version = "0.9.25" authors = ["Alex Crichton <[email protected]>", "Steven Fackler <[email protected]>"] license = "MIT" diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 10129021..0ed91b8d 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.2" +version = "0.10.3" authors = ["Steven Fackler <[email protected]>"] license = "Apache-2.0" description = "OpenSSL bindings" @@ -23,7 +23,7 @@ bitflags = "1.0" foreign-types = "0.3.1" lazy_static = "1" libc = "0.2" -openssl-sys = { version = "0.9.24", path = "../openssl-sys" } +openssl-sys = { version = "0.9.25", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3" |