Skip to content

Commit 69412cf

Browse files
committed
Released postgres v0.17.0
1 parent 1f773f0 commit 69412cf

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-featur
2525

2626
[dev-dependencies]
2727
tokio = { version = "0.2", features = ["full"] }
28-
postgres = { version = "=0.17.0-alpha.2", path = "../postgres" }
28+
postgres = { version = "0.17.0", path = "../postgres" }

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-featur
2525

2626
[dev-dependencies]
2727
tokio = { version = "0.2", features = ["full"] }
28-
postgres = { version = "=0.17.0-alpha.2", path = "../postgres" }
28+
postgres = { version = "0.17.0", path = "../postgres" }

postgres/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change Log
22

3+
## v0.17.0 - 2019-12-23
4+
5+
### Changed
6+
7+
* Each `Client` now has its own non-threaded tokio `Runtime` rather than sharing a global threaded `Runtime`. This
8+
significantly improves performance by minimizing context switches and cross-thread synchronization.
9+
* `Client::copy_in` now returns a writer rather than taking in a reader.
10+
* `Client::query_raw` now returns a named type.
11+
* `Client::copy_in` and `Client::copy_out` no longer take query parameters as PostgreSQL doesn't support them in COPY
12+
queries.
13+
14+
### Removed
15+
16+
* Removed support for `uuid` 0.7.
17+
18+
### Added
19+
20+
* Added `Client::query_opt` for queries that are expected to return zero or one rows.
21+
* Added binary copy support in the `binary_copy` module.
22+
* The `fallible-iterator` crate is now publicly reexported.
23+
324
## v0.17.0-alpha.2 - 2019-11-27
425

526
### Changed

postgres/Cargo.toml

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

0 commit comments

Comments
 (0)