Release postgres v0.17.0-alpha.1

This commit is contained in:
Steven Fackler 2019-10-14 18:24:04 -07:00
parent 7f7ef7560a
commit 2a8f7bdd96
5 changed files with 16 additions and 10 deletions

View File

@ -24,4 +24,4 @@ tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", defau
[dev-dependencies]
tokio = "=0.2.0-alpha.6"
postgres = { version = "0.16.0-rc.1", path = "../postgres" }
postgres = { version = "=0.17.0-alpha.1", path = "../postgres" }

View File

@ -24,4 +24,4 @@ tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", defau
[dev-dependencies]
tokio = "=0.2.0-alpha.6"
postgres = { version = "0.16.0-rc.1", path = "../postgres" }
postgres = { version = "=0.17.0-alpha.1", path = "../postgres" }

View File

@ -1,5 +1,11 @@
# Change Log
## v0.17.0-alpha.1 - 2019-10-14
### Changed
* Updated `tokio-postgres` to 0.5.0-alpha.1.
## v0.16.0-rc.2 - 2019-06-29
### Fixed

View File

@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.16.0-rc.2"
version = "0.17.0-alpha.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
@ -20,12 +20,12 @@ circle-ci = { repository = "sfackler/rust-postgres" }
default = ["runtime"]
runtime = ["tokio-postgres/runtime", "tokio", "lazy_static", "log"]
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]
"with-chrono-0_4" = ["tokio-postgres/with-chrono-0_4"]
"with-eui48-0_4" = ["tokio-postgres/with-eui48-0_4"]
"with-geo-types-0_4" = ["tokio-postgres/with-geo-types-0_4"]
"with-serde_json-1" = ["tokio-postgres/with-serde_json-1"]
"with-uuid-0_7" = ["tokio-postgres/with-uuid-0_7"]
with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"]
with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
with-eui48-0_4 = ["tokio-postgres/with-eui48-0_4"]
with-geo-types-0_4 = ["tokio-postgres/with-geo-types-0_4"]
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
with-uuid-0_7 = ["tokio-postgres/with-uuid-0_7"]
[dependencies]
bytes = "0.4"

View File

@ -52,7 +52,7 @@
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
//! crates, respectively.
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/postgres/0.17")]
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
#[cfg(feature = "runtime")]