From da2c13e7618acf3f5b4f9da03233b79c2a183665 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Fri, 16 Sep 2022 12:39:00 -0500 Subject: [PATCH] Update changelogs and bump version numbers --- CHANGELOG.md | 12 ++++++++++++ boring-sys/CHANGELOG.md | 17 +++++++++++++++++ boring-sys/Cargo.toml | 2 +- boring/Cargo.toml | 2 +- hyper-boring/CHANGELOG.md | 7 +++++++ hyper-boring/Cargo.toml | 2 +- 6 files changed, 39 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b91eef3..f7fd6730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## [Unreleased] +## [v2.1.0] - 2022-09-16 + +This release contains several changes to `boring-sys` as well; make sure to read its changelog. + +### Added + +* `BigNumRef::to_vec_padded` + +### Fixed + +* Remove uses of `mem::uninitialized` + ## [v2.0.0] - 2021-12-16 ### Changed diff --git a/boring-sys/CHANGELOG.md b/boring-sys/CHANGELOG.md index 66be56a8..a1b3323c 100644 --- a/boring-sys/CHANGELOG.md +++ b/boring-sys/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## [v2.1.0] - 2022-09-16 + +### Added + +* Support using a FIPS-certified boringssl. You can enable this with `--features fips`. +* Support `aarch64-apple-ios-sim` targets + +### Changed + +* Updated `bindgen` to `1.60` +* Updated `boring-sys` to f1c75347daa2ea81a941e953f2263e0a4d970c8d. In particular, this makes boring compatible with `quiche 0.12`. + +### Fixed + +* Use the Android NDK sysroot when running bindgen +* Only apply the MSVC generator hack when targeting MSVC, not all Windows targets + ## [v2.0.0] - 2021-12-16 ### Added diff --git a/boring-sys/Cargo.toml b/boring-sys/Cargo.toml index 7345eb09..02a756fe 100644 --- a/boring-sys/Cargo.toml +++ b/boring-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boring-sys" -version = "2.0.0" +version = "2.1.0" authors = ["Alex Crichton ", "Steven Fackler ", "Ivan Nikulin "] diff --git a/boring/Cargo.toml b/boring/Cargo.toml index 5d58c275..dec24880 100644 --- a/boring/Cargo.toml +++ b/boring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boring" -version = "2.0.0" +version = "2.1.0" authors = ["Steven Fackler ", "Ivan Nikulin "] license = "Apache-2.0" description = "BoringSSL bindings" diff --git a/hyper-boring/CHANGELOG.md b/hyper-boring/CHANGELOG.md index ddfe3aa1..a7212ac9 100644 --- a/hyper-boring/CHANGELOG.md +++ b/hyper-boring/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] + +## [v2.1.2] - 2022-09-16 + +### Added + +* `impl Debug for MaybeHttpsStream` + ## [v2.1.1] - 2021-12-16 ### Changed diff --git a/hyper-boring/Cargo.toml b/hyper-boring/Cargo.toml index a00d1420..8ca02969 100644 --- a/hyper-boring/Cargo.toml +++ b/hyper-boring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-boring" -version = "2.1.1" +version = "2.1.2" authors = ["Steven Fackler ", "Ivan Nikulin "] edition = "2018" description = "Hyper TLS support via BoringSSL"