From c1b9333e594dd8e5a351f1ab74a4d1b01fc7f81a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 5 Nov 2020 21:36:22 -0500 Subject: [PATCH] Release v0.2.5 --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cac7004c..bb160527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ ## [Unreleased] +## [v0.2.5] + +### Added + +* Added `TlsConnectorBuilder::disable_built_in_roots` to only trust root certificates explicitly + added to the builder. + +### Updated + +* Updated security-framework to 2.0. + ## [v0.2.4] ### Added @@ -76,7 +87,8 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.4...master +[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.5...master +[v0.2.5]: https://github.com/sfackler/rust-native-tls/compare/v0.2.5...v0.2.5 [v0.2.4]: https://github.com/sfackler/rust-native-tls/compare/v0.2.3...v0.2.4 [v0.2.3]: https://github.com/sfackler/rust-native-tls/compare/v0.2.2...v0.2.3 [v0.2.2]: https://github.com/sfackler/rust-native-tls/compare/v0.2.1...v0.2.2 diff --git a/Cargo.toml b/Cargo.toml index 4e8b860d..ba6bb33b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native-tls" -version = "0.2.4" +version = "0.2.5" authors = ["Steven Fackler "] license = "MIT/Apache-2.0" description = "A wrapper over a platform's native TLS implementation"