From 6464954e077c24b075413122af3abc88f5570ee5 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 29 Jun 2019 21:39:25 -0700 Subject: [PATCH] Release postgres-openssl v0.2.0-rc.1 --- postgres-native-tls/CHANGELOG.md | 2 -- postgres-openssl/CHANGELOG.md | 8 ++------ postgres-openssl/Cargo.toml | 2 +- postgres-openssl/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/postgres-native-tls/CHANGELOG.md b/postgres-native-tls/CHANGELOG.md index fac4dabc9..46fab3005 100644 --- a/postgres-native-tls/CHANGELOG.md +++ b/postgres-native-tls/CHANGELOG.md @@ -1,7 +1,5 @@ # Change Log -## [Unreleased] - ## v0.2.0-rc.1 - 2019-06-29 * Updated to tokio-postgres v0.4.0-rc. diff --git a/postgres-openssl/CHANGELOG.md b/postgres-openssl/CHANGELOG.md index f0c20b8c5..90d09aad0 100644 --- a/postgres-openssl/CHANGELOG.md +++ b/postgres-openssl/CHANGELOG.md @@ -1,9 +1,5 @@ # Change Log -## [Unreleased] +## v0.2.0-rc.1 - 2019-03-06 -## v0.1.0-rc.1 - 2019-03-06 - -* Initial release. - -[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-openssl-v0.1.0-rc.1...master +* Updated to `tokio-postgres` v0.4.0-rc. diff --git a/postgres-openssl/Cargo.toml b/postgres-openssl/Cargo.toml index ca50aa421..a45f8acbc 100644 --- a/postgres-openssl/Cargo.toml +++ b/postgres-openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-openssl" -version = "0.1.0-rc.1" +version = "0.2.0-rc.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/postgres-openssl/src/lib.rs b/postgres-openssl/src/lib.rs index 57486bad1..c1999b142 100644 --- a/postgres-openssl/src/lib.rs +++ b/postgres-openssl/src/lib.rs @@ -39,7 +39,7 @@ //! # Ok(()) //! # } //! ``` -#![doc(html_root_url = "https://docs.rs/tokio-postgres-openssl/0.1.0-rc.1")] +#![doc(html_root_url = "https://docs.rs/postgres-openssl/0.2.0-rc.1")] #![warn(rust_2018_idioms, clippy::all, missing_docs)] use futures::{try_ready, Async, Future, Poll};