Commit 4707adca authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.37

parent a6d1bdc4
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -2,6 +2,18 @@

## [Unreleased]

## [v0.10.37] - 2021-10-27

### Fixed

* Fixed linkage against OpenSSL distributions built with `no-chacha`.

### Added

* Added `BigNumRef::to_vec_padded`.
* Added `X509Name::from_der` and `X509NameRef::to_der`.
* Added `BigNum::new_secure`, `BigNumReef::set_const_time`, `BigNumref::is_const_time`, and `BigNumRef::is_secure`.

## [v0.10.36] - 2021-08-17

### Added
@@ -556,7 +568,8 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.36...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.37...master
[v0.10.37]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.36...openssl-v0.10.37
[v0.10.36]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.35...openssl-v0.10.36
[v0.10.35]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.34...openssl-v0.10.35
[v0.10.34]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.33...openssl-v0.10.34
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.36"
version = "0.10.37"
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.66", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.68", path = "../openssl-sys" }

[dev-dependencies]
tempdir = "0.3"