Skip to content

Commit f9ba589

Browse files
committed
Release postgres v0.17.3
1 parent 66f5a8b commit f9ba589

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

postgres/CHANGELOG.md

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

3+
## v0.17.3 - 2020-05-01
4+
5+
### Fixed
6+
7+
* Errors sent by the server will now be returned from `Client` methods rather than just being logs.
8+
9+
### Added
10+
11+
* Added `Transaction::savepoint`, which can be used to create a savepoint with a custom name.
12+
* Added `Client::notifications`, which returns an interface to the notifications sent by the server.
13+
314
## v0.17.2 - 2020-03-05
415

516
### Added

postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.17.2"
3+
version = "0.17.3"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -33,7 +33,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
3333
bytes = "0.5"
3434
fallible-iterator = "0.2"
3535
futures = "0.3"
36-
tokio-postgres = { version = "0.5.3", path = "../tokio-postgres" }
36+
tokio-postgres = { version = "0.5.4", path = "../tokio-postgres" }
3737

3838
tokio = { version = "0.2", features = ["rt-core", "time"] }
3939
log = "0.4"

0 commit comments

Comments
 (0)