Skip to content

Commit

Permalink
Release openssl v0.10.42
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Sep 26, 2022
1 parent 44528bb commit e43eb58
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
18 changes: 16 additions & 2 deletions openssl/CHANGELOG.md
Expand Up @@ -2,9 +2,22 @@

## [Unreleased]

## [v0.10.42] - 2022-09-26

### Added

* Added `MdCtxRef::size`
* Added `SslRef::psk_identity_hint` and `SslRef::psk_identity`.
* Added SHA-3 constants to `Nid`.
* Added `SslOptions::PRIORITIZE_CHACHA`.
* Added `X509ReqRef::to_text`.
* Added `MdCtxRef::size`.
* Added `X509NameRef::try_cmp`.
* Added `MdCtxRef::reset`.
* Added experimental, unstable support for BoringSSL.

### Fixed

* Fixed `MdCtxRef::digest_verify_init` to support `PKey`s with only public components.

## [v0.10.41] - 2022-06-09

Expand Down Expand Up @@ -617,7 +630,8 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.41...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.42...master
[v0.10.42]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.41...openssl-v0.10.42
[v0.10.41]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.40...openssl-v0.10.41
[v0.10.40]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.39...openssl-v0.10.40
[v0.10.39]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.38...openssl-v0.10.39
Expand Down
4 changes: 2 additions & 2 deletions openssl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl"
version = "0.10.41"
version = "0.10.42"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
Expand Down Expand Up @@ -30,7 +30,7 @@ libc = "0.2"
once_cell = "1.5.2"

openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
ffi = { package = "openssl-sys", version = "0.9.75", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.76", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"

0 comments on commit e43eb58

Please sign in to comment.