Skip to content

Commit 2a8f7bd

Browse files
committed
Release postgres v0.17.0-alpha.1
1 parent 7f7ef75 commit 2a8f7bd

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

postgres-native-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", defau
2424

2525
[dev-dependencies]
2626
tokio = "=0.2.0-alpha.6"
27-
postgres = { version = "0.16.0-rc.1", path = "../postgres" }
27+
postgres = { version = "=0.17.0-alpha.1", path = "../postgres" }

postgres-openssl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", defau
2424

2525
[dev-dependencies]
2626
tokio = "=0.2.0-alpha.6"
27-
postgres = { version = "0.16.0-rc.1", path = "../postgres" }
27+
postgres = { version = "=0.17.0-alpha.1", path = "../postgres" }

postgres/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v0.17.0-alpha.1 - 2019-10-14
4+
5+
### Changed
6+
7+
* Updated `tokio-postgres` to 0.5.0-alpha.1.
8+
39
## v0.16.0-rc.2 - 2019-06-29
410

511
### Fixed

postgres/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.16.0-rc.2"
3+
version = "0.17.0-alpha.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -20,12 +20,12 @@ circle-ci = { repository = "sfackler/rust-postgres" }
2020
default = ["runtime"]
2121
runtime = ["tokio-postgres/runtime", "tokio", "lazy_static", "log"]
2222

23-
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]
24-
"with-chrono-0_4" = ["tokio-postgres/with-chrono-0_4"]
25-
"with-eui48-0_4" = ["tokio-postgres/with-eui48-0_4"]
26-
"with-geo-types-0_4" = ["tokio-postgres/with-geo-types-0_4"]
27-
"with-serde_json-1" = ["tokio-postgres/with-serde_json-1"]
28-
"with-uuid-0_7" = ["tokio-postgres/with-uuid-0_7"]
23+
with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"]
24+
with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
25+
with-eui48-0_4 = ["tokio-postgres/with-eui48-0_4"]
26+
with-geo-types-0_4 = ["tokio-postgres/with-geo-types-0_4"]
27+
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
28+
with-uuid-0_7 = ["tokio-postgres/with-uuid-0_7"]
2929

3030
[dependencies]
3131
bytes = "0.4"

postgres/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
5353
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
5454
//! crates, respectively.
55-
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.2")]
55+
#![doc(html_root_url = "https://docs.rs/postgres/0.17")]
5656
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
5757

5858
#[cfg(feature = "runtime")]

0 commit comments

Comments
 (0)