From c428588104b7a23fdc1f735a07924ec62fdd244f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 4 Dec 2023 20:41:05 -0500 Subject: [PATCH] Release openssl v0.10.61 --- openssl/CHANGELOG.md | 13 ++++++++++++- openssl/Cargo.toml | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/openssl/CHANGELOG.md b/openssl/CHANGELOG.md index d616f57fc2..a37da48a9e 100644 --- a/openssl/CHANGELOG.md +++ b/openssl/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [v0.10.61] - 2023-12-04 + +### Changed + +* `SslStream` now uses `SSL_read_ex`, `SSL_write_ex`, and `SSL_peek_ex` when available + +### Added + +* Added `SslStream::{read_uninit, ssl_read_uninit}`. + ## [v0.10.60] - 2023-11-22 ### Deprecated @@ -848,7 +858,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...master +[v0.10.61]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...openssl-v0.10.61 [v0.10.60]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60 [v0.10.59]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59 [v0.10.58]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.58 diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index aaf48b81a6..61e3e83053 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl" -version = "0.10.60" +version = "0.10.61" 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.96", path = "../openssl-sys" } +ffi = { package = "openssl-sys", version = "0.9.97", path = "../openssl-sys" } [dev-dependencies] hex = "0.3"