From 4f084e7b647a26dcaa8da5301be93304cffe092f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 5 Mar 2019 21:49:41 -0800 Subject: [PATCH] Release tokio-postgres v0.4.0-rc.2 --- postgres/Cargo.toml | 2 +- tokio-postgres/CHANGELOG.md | 9 ++++++++- tokio-postgres/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 0057a7bc..bff0f6fd 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -20,7 +20,7 @@ runtime = ["tokio-postgres/runtime", "tokio", "lazy_static", "log"] bytes = "0.4" fallible-iterator = "0.1" futures = "0.1" -tokio-postgres = { version = "0.4.0-rc.1", path = "../tokio-postgres", default-features = false } +tokio-postgres = { version = "0.4.0-rc.2", path = "../tokio-postgres", default-features = false } tokio = { version = "0.1", optional = true } lazy_static = { version = "1.0", optional = true } diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index af5d42ef..375e1b27 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.4.0-rc.2] - 2019-05-03 + +### Fixed + +* Fixed Cargo features to actually enable the functionality they claim to. + ## [v0.4.0-rc.1] - 2019-05-03 ### Changed @@ -37,6 +43,7 @@ Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.1...master +[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.2...master +[v0.4.0-rc.2]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.1...tokio-postgres-v0.4.0-rc.2 [v0.4.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.3.0...tokio-postgres-v0.4.0-rc.1 [release tags]: https://github.com/sfackler/rust-postgres/releases diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 1a6d5ef1..2914f8d7 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-postgres" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0"