Commit ffec25a7 authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.34

parent f93a0eff
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -2,6 +2,15 @@

## [Unreleased]

## [v0.10.34] - 2021-04-28

### Added

* Added `Dh::set_private_key` and `DhRef::private_key`.
* Added `EcPointRef::affine_coordinates`.
* Added `TryFrom` implementations to convert between `PKey` and specific key types.
* Added `X509StoreBuilderRef::set_flags`.

## [v0.10.33] - 2021-03-13

### Fixed
@@ -527,7 +536,8 @@

Look at the [release tags] for information about older releases.

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.34...master
[v0.10.34]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...openssl-v0.10.34
[v0.10.33]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.32...openssl-v0.10.33
[v0.10.32]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.31...openssl-v0.10.32
[v0.10.31]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.30...openssl-v0.10.31
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.33"
version = "0.10.34"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
@@ -26,7 +26,7 @@ foreign-types = "0.3.1"
libc = "0.2"
once_cell = "1.5.2"

ffi = { package = "openssl-sys", version = "0.9.61", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.62", path = "../openssl-sys" }

[dev-dependencies]
tempdir = "0.3"