Released postgres v0.17.0
This commit is contained in:
parent
1f773f08e3
commit
69412cf7e3
@ -25,4 +25,4 @@ tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-featur
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
postgres = { version = "=0.17.0-alpha.2", path = "../postgres" }
|
postgres = { version = "0.17.0", path = "../postgres" }
|
||||||
|
@ -25,4 +25,4 @@ tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-featur
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["full"] }
|
||||||
postgres = { version = "=0.17.0-alpha.2", path = "../postgres" }
|
postgres = { version = "0.17.0", path = "../postgres" }
|
||||||
|
@ -1,5 +1,26 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.17.0 - 2019-12-23
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Each `Client` now has its own non-threaded tokio `Runtime` rather than sharing a global threaded `Runtime`. This
|
||||||
|
significantly improves performance by minimizing context switches and cross-thread synchronization.
|
||||||
|
* `Client::copy_in` now returns a writer rather than taking in a reader.
|
||||||
|
* `Client::query_raw` now returns a named type.
|
||||||
|
* `Client::copy_in` and `Client::copy_out` no longer take query parameters as PostgreSQL doesn't support them in COPY
|
||||||
|
queries.
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
* Removed support for `uuid` 0.7.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added `Client::query_opt` for queries that are expected to return zero or one rows.
|
||||||
|
* Added binary copy support in the `binary_copy` module.
|
||||||
|
* The `fallible-iterator` crate is now publicly reexported.
|
||||||
|
|
||||||
## v0.17.0-alpha.2 - 2019-11-27
|
## v0.17.0-alpha.2 - 2019-11-27
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "postgres"
|
name = "postgres"
|
||||||
version = "0.17.0-alpha.2"
|
version = "0.17.0"
|
||||||
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