Skip to content

Commit

Permalink
Release openssl v0.10.61
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 5, 2023
1 parent 3e6b5d4 commit c428588
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion openssl/CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions openssl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl"
version = "0.10.60"
version = "0.10.61"
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.96", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.97", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"

0 comments on commit c428588

Please sign in to comment.