Unverified Commit c4285881 authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.61

parent 3e6b5d4c
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.60"
version = "0.10.61"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"