Relase tokio-postgres v0.5.0-alpha.2
This commit is contained in:
parent
eff68d547f
commit
47d97f0d2e
@ -21,7 +21,7 @@ futures-preview = "=0.3.0-alpha.19"
|
|||||||
native-tls = "0.2"
|
native-tls = "0.2"
|
||||||
tokio = "0.2"
|
tokio = "0.2"
|
||||||
tokio-tls = "0.3"
|
tokio-tls = "0.3"
|
||||||
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
|
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
|
@ -21,7 +21,7 @@ futures = "0.3"
|
|||||||
openssl = "0.10"
|
openssl = "0.10"
|
||||||
tokio = "0.2"
|
tokio = "0.2"
|
||||||
tokio-openssl = "0.4"
|
tokio-openssl = "0.4"
|
||||||
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
|
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
|
@ -33,7 +33,7 @@ bytes = "0.5"
|
|||||||
fallible-iterator = "0.2"
|
fallible-iterator = "0.2"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
pin-utils = "=0.1.0-alpha.4"
|
pin-utils = "=0.1.0-alpha.4"
|
||||||
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres", default-features = false }
|
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
|
||||||
tokio-executor = "=0.2.0-alpha.6"
|
tokio-executor = "=0.2.0-alpha.6"
|
||||||
|
|
||||||
tokio = { version = "0.2", optional = true, features = ["rt-threaded"] }
|
tokio = { version = "0.2", optional = true, features = ["rt-threaded"] }
|
||||||
|
@ -10,8 +10,8 @@ bytes = "0.5"
|
|||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.10"
|
||||||
pin-project-lite = "0.1"
|
pin-project-lite = "0.1"
|
||||||
tokio-postgres = { version = "=0.5.0-alpha.1", default-features = false, path = "../tokio-postgres" }
|
tokio-postgres = { version = "=0.5.0-alpha.2", default-features = false, path = "../tokio-postgres" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
tokio-postgres = { version = "=0.5.0-alpha.1", path = "../tokio-postgres" }
|
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres" }
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## Unreleased
|
## v0.5.0-alpha.2 - 2019-11-27
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Upgraded `bytes` to 0.5.
|
||||||
|
* Upgraded `tokio` to 0.2.
|
||||||
|
* The TLS interface uses a trait to obtain channel binding information rather than returning it after the handshake.
|
||||||
|
* Changed the value of the `timezone` property from `GMT` to `UTC`.
|
||||||
|
* Returned `Stream` implementations are now `!Unpin`.
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* Added support for converting to and from `uuid` crate v0.8
|
|
||||||
|
* Added support for `uuid` 0.8.
|
||||||
|
* Added the column to `Row::try_get` errors.
|
||||||
|
|
||||||
## v0.5.0-alpha.1 - 2019-10-14
|
## v0.5.0-alpha.1 - 2019-10-14
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-postgres"
|
name = "tokio-postgres"
|
||||||
version = "0.5.0-alpha.1"
|
version = "0.5.0-alpha.2"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user