From 0cedaeff4e925a102157b9df6953b37c256083e3 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 4 Aug 2018 18:30:43 -0700 Subject: [PATCH] Release v0.2.1 --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 143b7c6e..9d55ddd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [v0.2.1] + +### Added + +* The `vendored` Cargo feature will cause the crate to compile and statically link to a vendored + copy of OpenSSL on platforms that use that backend. + ## [v0.2.0] ### Added @@ -41,6 +48,7 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.0...master +[Unreleased]: https://github.com/sfackler/rust-native-tls/compare/v0.2.1...master +[v0.2.1]: https://github.com/sfackler/rust-native-tls/compare/v0.2.0...v0.2.1 [v0.2.0]: https://github.com/sfackler/rust-native-tls/compare/v0.1.5...v0.2.0 [release tags]: https://github.com/sfackler/rust-native-tls/releases diff --git a/Cargo.toml b/Cargo.toml index a8f9e051..6b71fea3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native-tls" -version = "0.2.0" +version = "0.2.1" authors = ["Steven Fackler "] license = "MIT/Apache-2.0" description = "A wrapper over a platform's native TLS implementation"