Skip to content

Commit 47d97f0

Browse files
committed
Relase tokio-postgres v0.5.0-alpha.2
1 parent eff68d5 commit 47d97f0

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ futures-preview = "=0.3.0-alpha.19"
2121
native-tls = "0.2"
2222
tokio = "0.2"
2323
tokio-tls = "0.3"
24-
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
24+
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
2525

2626
[dev-dependencies]
2727
tokio = { version = "0.2", features = ["full"] }

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ futures = "0.3"
2121
openssl = "0.10"
2222
tokio = "0.2"
2323
tokio-openssl = "0.4"
24-
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
24+
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
2525

2626
[dev-dependencies]
2727
tokio = { version = "0.2", features = ["full"] }

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bytes = "0.5"
3333
fallible-iterator = "0.2"
3434
futures = "0.3"
3535
pin-utils = "=0.1.0-alpha.4"
36-
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
36+
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
3737
tokio-executor = "=0.2.0-alpha.6"
3838

3939
tokio = { version = "0.2", optional = true, features = ["rt-threaded"] }

tokio-postgres-binary-copy/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ bytes = "0.5"
1010
futures = "0.3"
1111
parking_lot = "0.10"
1212
pin-project-lite = "0.1"
13-
tokio-postgres = { version = "=0.5.0-alpha.1", default-features = false, path = "../tokio-postgres" }
13+
tokio-postgres = { version = "=0.5.0-alpha.2", default-features = false, path = "../tokio-postgres" }
1414

1515
[dev-dependencies]
1616
tokio = { version = "0.2", features = ["full"] }
17-
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres" }
17+
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres" }

tokio-postgres/CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
# Change Log
22

3-
## Unreleased
3+
## v0.5.0-alpha.2 - 2019-11-27
4+
5+
### Changed
6+
7+
* Upgraded `bytes` to 0.5.
8+
* Upgraded `tokio` to 0.2.
9+
* The TLS interface uses a trait to obtain channel binding information rather than returning it after the handshake.
10+
* Changed the value of the `timezone` property from `GMT` to `UTC`.
11+
* Returned `Stream` implementations are now `!Unpin`.
412

513
### Added
6-
* Added support for converting to and from `uuid` crate v0.8
14+
15+
* Added support for `uuid` 0.8.
16+
* Added the column to `Row::try_get` errors.
717

818
## v0.5.0-alpha.1 - 2019-10-14
919

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.5.0-alpha.1"
3+
version = "0.5.0-alpha.2"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

0 commit comments

Comments
 (0)