Skip to content

Prepare 0.11.0 release. #338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.11.0 (2023-07-14)

### Added

- Added support for providing certificate revocation lists (CRLs) to client
certificate verifiers via the new builder types. (#324).
- Some new certificate revocation list related error codes starting with
RUSTLS_RESULT_CERT_REVOCATION_LIST. (#324).

### Changed

- rustls_client_cert_verifier became
rustls_allow_any_authenticated_client_verifier and must be constructed from a
rustls_allow_any_authenticated_client_builder.
- rustls_client_cert_verifier_optional became
rustls_allow_any_anonymous_or_authenticated_client_verifier and must be
constructed from a rustls_allow_any_anonymous_or_authenticated_client_builder.

## 0.10.0 (2023-03-29)

### 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.10.0"
version = "0.11.0"
authors = ["Jacob Hoffman-Andrews <[email protected]>"]
license = "Apache-2.0/ISC/MIT"
readme = "README-crates.io.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ need to find another library to provide the cryptographic primitives.

# Build

You'll need to [install the Rust toolchain](https://rustup.rs/) version 1.57
You'll need to [install the Rust toolchain](https://rustup.rs/) version 1.60
or above and a C compiler (gcc and clang should both work). To build in optimized mode:

make
Expand Down