Skip to content

Commit

Permalink
proj: prepare 0.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpu committed Mar 11, 2024
1 parent fa0ffad commit e52a982
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 0.13.0 (XXXX-XX-XX)

This release updates to [Rustls 0.23.1] and continues to use `*ring*` as the
only cryptographic provider.

[Rustls 0.23.1]: https://github.com/rustls/rustls/releases/tag/v%2F0.23.1

### Added

* A new `rustls_accepted_alert` type is added. Calling
`rustls_accepted_alert_bytes` on this type produces TLS data to write
in the case where a server acceptor encountered an error accepting a client.
The returned TLS data should be written to the connection before freeing
the `rustls_accepted_alert` with `rustls_accepted_alert_free`.

## Changed

* The `rustls_acceptor_accept` and `rustls_accepted_into_connection` API
functions now require an extra `rustls_accepted_alert` out parameter. This
parameter will only be set when an error occurs accepting a client connection
and can be used to write any generated alerts to the connection to signal
the accept error to the peer.

## 0.12.1 (2024-03-11)

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustls-ffi"
version = "0.12.1"
version = "0.13.0"
authors = ["Jacob Hoffman-Andrews <[email protected]>"]
license = "Apache-2.0/ISC/MIT"
readme = "README-crates.io.md"
Expand Down

0 comments on commit e52a982

Please sign in to comment.