Skip to content

Commit

Permalink
Release openssl v0.10.45
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 20, 2022
1 parent f32af9f commit 7df5686
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions openssl/CHANGELOG.md
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## [v0.10.45] - 2022-12-20

### Fixed

* Removed the newly added `CipherCtxRef::minimal_output_size` method, which did not work properly.
* Added `NO_DEPRECATED_3_0` cfg checks for more APIs.

### Added

* Added `SslRef::add_chain_cert`.
* Added `PKeyRef::security_bits`.
* Added `Provider::set_default_search_path`.
* Added `CipherCtxRef::cipher_final_unchecked`.

## [v0.10.44] - 2022-12-06

### Added
Expand Down Expand Up @@ -649,8 +663,9 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...master
[v0.10.44]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...openssl-v0.10.44
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.45...master
[v0.10.45]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...openssl-v0.10.45
[v0.10.44]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.43...openssl-v0.10.44
[v0.10.43]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.42...openssl-v0.10.43
[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
Expand Down
4 changes: 2 additions & 2 deletions openssl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl"
version = "0.10.44"
version = "0.10.45"
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.79", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.80", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"

0 comments on commit 7df5686

Please sign in to comment.