diff --git a/postgres-openssl/CHANGELOG.md b/postgres-openssl/CHANGELOG.md index 90d09aad..68390240 100644 --- a/postgres-openssl/CHANGELOG.md +++ b/postgres-openssl/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-03-06 +### Changed + * Updated to `tokio-postgres` v0.4.0-rc. diff --git a/postgres-openssl/Cargo.toml b/postgres-openssl/Cargo.toml index faddd951..9316b60c 100644 --- a/postgres-openssl/Cargo.toml +++ b/postgres-openssl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-openssl" -version = "0.2.0-rc.1" +version = "0.3.0-alpha.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -20,7 +20,7 @@ futures-preview = "=0.3.0-alpha.19" openssl = "0.10" tokio-io = "=0.2.0-alpha.6" tokio-openssl = "=0.4.0-alpha.6" -tokio-postgres = { version = "0.5.0-alpha.1", path = "../tokio-postgres", default-features = false } +tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false } [dev-dependencies] tokio = "=0.2.0-alpha.6" diff --git a/postgres-openssl/src/lib.rs b/postgres-openssl/src/lib.rs index ff7c3d7a..2be536d2 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/postgres-openssl/0.2.0-rc.1")] +#![doc(html_root_url = "https://docs.rs/postgres-openssl/0.3")] #![warn(rust_2018_idioms, clippy::all, missing_docs)] #[cfg(feature = "runtime")]