From 82ae9a35f92b3e86f44ee5c7245aa991eb8e63d2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 10 Aug 2021 20:37:34 -0400 Subject: [PATCH] Release v0.2.8 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25a2191e..39fbd868 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.2.8] + +### Fixed + +* Fixed an off by one error in the schannel backend's handling of max_protocol_version. + ## [v0.2.7] ### Added @@ -99,7 +105,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.7...master +[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.8...master +[v0.2.8]: https://github.com/sfackler/rust-native-tls/compare/v0.2.7...v0.2.8 [v0.2.7]: https://github.com/sfackler/rust-native-tls/compare/v0.2.6...v0.2.7 [v0.2.6]: https://github.com/sfackler/rust-native-tls/compare/v0.2.5...v0.2.6 [v0.2.5]: https://github.com/sfackler/rust-native-tls/compare/v0.2.4...v0.2.5 diff --git a/Cargo.toml b/Cargo.toml index c76584bd..73a1aa32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native-tls" -version = "0.2.7" +version = "0.2.8" authors = ["Steven Fackler "] license = "MIT/Apache-2.0" description = "A wrapper over a platform's native TLS implementation"