From ae230fb012b9bb8b6408a52cb6c31b207209147c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 14 Oct 2019 18:17:00 -0700 Subject: [PATCH] Release tokio-native-tls v0.3.0-alpha.1 --- postgres-native-tls/CHANGELOG.md | 8 ++++++++ postgres-native-tls/Cargo.toml | 2 +- postgres-native-tls/src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/postgres-native-tls/CHANGELOG.md b/postgres-native-tls/CHANGELOG.md index 46fab3005..5a8a37ec7 100644 --- a/postgres-native-tls/CHANGELOG.md +++ b/postgres-native-tls/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## v0.3.0-alpha.1 - 2019-10-14 + +### Changed + +* Updated to tokio-postgres v0.5.0-alpha.1. + ## v0.2.0-rc.1 - 2019-06-29 +### Changed + * Updated to tokio-postgres v0.4.0-rc. diff --git a/postgres-native-tls/Cargo.toml b/postgres-native-tls/Cargo.toml index 1b8e18895..8759505b1 100644 --- a/postgres-native-tls/Cargo.toml +++ b/postgres-native-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-native-tls" -version = "0.2.0-rc.1" +version = "0.3.0-alpha.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/postgres-native-tls/src/lib.rs b/postgres-native-tls/src/lib.rs index b231586ac..f9e67fa0d 100644 --- a/postgres-native-tls/src/lib.rs +++ b/postgres-native-tls/src/lib.rs @@ -45,7 +45,7 @@ //! # Ok(()) //! # } //! ``` -#![doc(html_root_url = "https://docs.rs/postgres-native-tls/0.2.0-rc.1")] +#![doc(html_root_url = "https://docs.rs/postgres-native-tls/0.3")] #![warn(rust_2018_idioms, clippy::all, missing_docs)] use std::future::Future;