summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel McCarney <daniel@binaryparadox.net>2024-03-28 15:13:19 -0400
committerDaniel McCarney <daniel@binaryparadox.net>2024-03-29 09:26:01 -0400
commit5700454570cb1641c18d6f9663086671dc695487 (patch)
treeda76e15066ff82887a380052deb3fc2052cbe775
parent8a581cb96d8466be050bb2b104294b7297787fc6 (diff)
docs: update CHANGELOGv0.13.0
* Corrects the 0.13.0 release date. * Updates the rustls version referenced for 0.13.0. * Adds a mention of the cargo-c build change.
-rw-r--r--CHANGELOG.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d8bb004..b0c3028 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,11 @@
# Changelog
-## 0.13.0 (XXXX-XX-XX)
+## 0.13.0 (2024-03-28)
-This release updates to [Rustls 0.23.1] and continues to use `*ring*` as the
+This release updates to [Rustls 0.23.4] 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
+[Rustls 0.23.4]: https://github.com/rustls/rustls/releases/tag/v%2F0.23.4
### Added
@@ -16,7 +16,7 @@ only cryptographic provider.
the `rustls_accepted_alert` by calling `rustls_accepted_alert_write_tls` with
a `rustls_write_callback` implementation.
-## Changed
+### Changed
* The `rustls_acceptor_accept` and `rustls_accepted_into_connection` API
functions now require an extra `rustls_accepted_alert` out parameter. This
@@ -24,6 +24,10 @@ only cryptographic provider.
and can be used to write any generated alerts to the connection to signal
the accept error to the peer.
+* The experimental cargo-c build support has been updated to use a vendored
+ header file. This avoids the need for nightly rust or `cbindgen` when using
+ this build method.
+
## 0.12.1 (2024-03-21)
### Added