From e0b937c48ddf9532fcd76c12e4b5d7879762c11d Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 6 Dec 2022 07:41:51 -0500 Subject: [PATCH] Release openssl v0.10.44 --- openssl/CHANGELOG.md | 11 ++++++++++- openssl/Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index 31564986e0..f66bcb7501 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [v0.10.44] - 2022-12-06 + +### Added + +* Added `CipherCtxRef::num`, `CipherCtxRef::minimal_output_size`, and `CipherCtxRef::cipher_update_unchecked`. +* Improved output buffer size checks in `CipherCtxRef::cipher_update`. +* Added `X509Lookup::file` and `X509LookupRef::load_cert_file`. + ## [v0.10.43] - 2022-11-23 ### Added @@ -641,7 +649,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.43...master +[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 [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 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index b6204e4490..03f621eddd 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.43" +version = "0.10.44" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" @@ -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.78", path = "../openssl-sys" } +ffi = { package = "openssl-sys", version = "0.9.79", path = "../openssl-sys" } [dev-dependencies] hex = "0.3"