Skip to content

Commit e52a982

Browse files
committed
proj: prepare 0.13.0 release
1 parent fa0ffad commit e52a982

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 0.13.0 (XXXX-XX-XX)
4+
5+
This release updates to [Rustls 0.23.1] and continues to use `*ring*` as the
6+
only cryptographic provider.
7+
8+
[Rustls 0.23.1]: https://github.com/rustls/rustls/releases/tag/v%2F0.23.1
9+
10+
### Added
11+
12+
* A new `rustls_accepted_alert` type is added. Calling
13+
`rustls_accepted_alert_bytes` on this type produces TLS data to write
14+
in the case where a server acceptor encountered an error accepting a client.
15+
The returned TLS data should be written to the connection before freeing
16+
the `rustls_accepted_alert` with `rustls_accepted_alert_free`.
17+
18+
## Changed
19+
20+
* The `rustls_acceptor_accept` and `rustls_accepted_into_connection` API
21+
functions now require an extra `rustls_accepted_alert` out parameter. This
22+
parameter will only be set when an error occurs accepting a client connection
23+
and can be used to write any generated alerts to the connection to signal
24+
the accept error to the peer.
25+
326
## 0.12.1 (2024-03-11)
427

528
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustls-ffi"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Jacob Hoffman-Andrews <[email protected]>"]
55
license = "Apache-2.0/ISC/MIT"
66
readme = "README-crates.io.md"

0 commit comments

Comments
 (0)