Skip to content

Commit

Permalink
rustls 0.23.18, 0.14.1 changelog update
Browse files Browse the repository at this point in the history
* Updates main to rustls 0.23.18 for the acceptor API fix, like the
  rel-0.14 release branch.
* Backports the rel-0.14 release notes for 0.14.1 to the main changelog.
* Sets main's version as 0.15 in preparation for a release in the future
  when ready.
  • Loading branch information
cpu committed Nov 25, 2024
1 parent 8afec0a commit 72e92f2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.14.1 (2024-11-22)

This release updates to [Rustls 0.23.18][] and increases the project MSRV from
1.64 to 1.71, matching the upstream Rustls MSRV.

Notably this brings in a fix for an availability issue for **servers** using
the `rustls_acceptor` type and associated APIs. See the upstream 0.23.18
release notes for more information.

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

## 0.14.0 (2024-09-12)

This release updates to [Rustls 0.23.13][] and changes the rustls-ffi API to allow
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustls-ffi"
version = "0.14.0"
version = "0.15.0"
license = "Apache-2.0 OR ISC OR MIT"
readme = "README-crates.io.md"
description = "Rustls bindings for non-Rust languages"
Expand All @@ -27,7 +27,7 @@ cert_compression = ["rustls/brotli", "rustls/zlib"]

[dependencies]
# Keep in sync with RUSTLS_CRATE_VERSION in build.rs
rustls = { version = "0.23.16", default-features = false, features = ["std", "tls12"] }
rustls = { version = "0.23.18", default-features = false, features = ["std", "tls12"] }
pki-types = { package = "rustls-pki-types", version = "1.10", features = ["std"] }
webpki = { package = "rustls-webpki", version = "0.102.0", default-features = false, features = ["std"] }
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::{env, fs, path::PathBuf};
// because doing so would require a heavy-weight deserialization lib dependency
// (and it couldn't be a _dev_ dep for use in a build script) or doing brittle
// by-hand parsing.
const RUSTLS_CRATE_VERSION: &str = "0.23.16";
const RUSTLS_CRATE_VERSION: &str = "0.23.18";

fn main() {
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
Expand Down

0 comments on commit 72e92f2

Please sign in to comment.