Skip to content

Commit f958a80

Browse files
committed
proj: prepare 0.13.0 release
1 parent 7cc74e4 commit f958a80

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
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` by calling `rustls_accepted_alert_write_tls` with
17+
a `rustls_write_callback` implementation.
18+
19+
## Changed
20+
21+
* The `rustls_acceptor_accept` and `rustls_accepted_into_connection` API
22+
functions now require an extra `rustls_accepted_alert` out parameter. This
23+
parameter will only be set when an error occurs accepting a client connection
24+
and can be used to write any generated alerts to the connection to signal
25+
the accept error to the peer.
26+
327
## 0.12.1 (2024-03-21)
428

529
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)