Update changelogs and bump version numbers

This commit is contained in:
Joshua Nelson 2022-09-16 12:39:00 -05:00 committed by Joshua Nelson
parent bd4f8d58ef
commit da2c13e761
6 changed files with 39 additions and 3 deletions

View File

@ -2,6 +2,18 @@
## [Unreleased] ## [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 ## [v2.0.0] - 2021-12-16
### Changed ### Changed

View File

@ -2,6 +2,23 @@
## [Unreleased] ## [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 ## [v2.0.0] - 2021-12-16
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "boring-sys" name = "boring-sys"
version = "2.0.0" version = "2.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>", authors = ["Alex Crichton <alex@alexcrichton.com>",
"Steven Fackler <sfackler@gmail.com>", "Steven Fackler <sfackler@gmail.com>",
"Ivan Nikulin <ifaaan@gmail.com>"] "Ivan Nikulin <ifaaan@gmail.com>"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "boring" name = "boring"
version = "2.0.0" version = "2.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "BoringSSL bindings" description = "BoringSSL bindings"

View File

@ -2,6 +2,13 @@
## [Unreleased] ## [Unreleased]
## [v2.1.2] - 2022-09-16
### Added
* `impl Debug for MaybeHttpsStream`
## [v2.1.1] - 2021-12-16 ## [v2.1.1] - 2021-12-16
### Changed ### Changed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "hyper-boring" name = "hyper-boring"
version = "2.1.1" version = "2.1.2"
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
edition = "2018" edition = "2018"
description = "Hyper TLS support via BoringSSL" description = "Hyper TLS support via BoringSSL"