diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e640fe..809f8f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.10.2] - 2023-12-04 + +### Fixed + +* Avoid creation of possibly-uninitialized `[u8]` slices. + ## [v0.10.1] - 2023-11-20 ### Fixed @@ -124,7 +130,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/hyper-openssl/compare/0.10.1...master +[Unreleased]: https://github.com/sfackler/hyper-openssl/compare/0.10.2...master +[v0.10.2]: https://github.com/sfackler/hyper-openssl/compare/0.10.1...0.10.2 [v0.10.1]: https://github.com/sfackler/hyper-openssl/compare/0.10.0...0.10.1 [v0.10.0]: https://github.com/sfackler/hyper-openssl/compare/0.9.2...0.10.0 [v0.9.2]: https://github.com/sfackler/hyper-openssl/compare/0.9.1...0.9.2 diff --git a/Cargo.toml b/Cargo.toml index 4324372..452a04d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-openssl" -version = "0.10.1" +version = "0.10.2" authors = ["Steven Fackler "] edition = "2021" description = "Hyper TLS support via OpenSSL"