summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Hoffman-Andrews <github@hoffman-andrews.com>2022-05-12 22:19:13 -0700
committerGitHub <noreply@github.com>2022-05-12 22:19:13 -0700
commitae1b18306c63acab1a77240404b3b991b531127f (patch)
tree1a8c68b0b412c001ee914752e2941f5be80e7a79
parent1e0943ddc55525d79e6ae97c1590057cf9b9e257 (diff)
Update CHANGELOG and Cargo.toml for 0.9.0. (#259)v0.9.0
-rw-r--r--CHANGELOG.md24
-rw-r--r--Cargo.toml2
2 files changed, 20 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9a21b56..530135e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,19 +1,33 @@
# Changelog
-## 0.9.0 (unreleased)
+## 0.9.0 (2022-05-12)
-### Changed
+### Added
+
+ - Add ciphersuite and version arrays (#242).
+ - Add method to get ciphersuite name (#147).
+ - Add static libs on Windows (#249).
+ - Added arrays ALL_CIPHER_SUITES, DEFAULT_CIPHER_SUITES, ALL_VERSIONS, and
+ DEFAULT_VERSIONS as more convenient alternatives to
+ rustls_default_ciphersuites_get_entry(), etc.
+ - Add CMake build system (with Windows support) (#253).
+ - Add feature for early testing of feature(read_buf) (#248).
+
+
+### Fixed
- rustls_is_cert_error now returns true for invalid certificate data
(this was broken by v0.8.0). It also takes unsigned int as its input
parameter instead of rustls_result (#227).
+ - Avoid creating references to out params (#256).
+
+### Changed
+
- rustls_verify_server_cert_callback now returns uint32_t instead of
rustls_result (#227).
- rustls_session_store_get_callback and rustls_session_store_put_callback now
return uint32_t (#227).
- - Added arrays ALL_CIPHER_SUITES, DEFAULT_CIPHER_SUITES, ALL_VERSIONS, and
- DEFAULT_VERSIONS as more convenient alternatives to
- rustls_default_ciphersuites_get_entry(), etc.
+ - Update rustls dependency to 0.20.4.
## 0.8.2 (2021-11-13)
diff --git a/Cargo.toml b/Cargo.toml
index 7b95e29..f87d753 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls-ffi"
-version = "0.8.2"
+version = "0.9.0"
authors = ["Jacob Hoffman-Andrews <github@hoffman-andrews.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README-crates.io.md"