Skip to content

Commit 53a929e

Browse files
Release tokio-postgres v0.7.14
1 parent 683a306 commit 53a929e

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

postgres-native-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runtime = ["tokio-postgres/runtime"]
1717
native-tls = { version = "0.2", features = ["alpn"] }
1818
tokio = "1.0"
1919
tokio-native-tls = "0.3"
20-
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }
20+
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres", default-features = false }
2121

2222
[dev-dependencies]
2323
futures-util = { version = "0.3", default-features = false }

postgres-openssl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runtime = ["tokio-postgres/runtime"]
1717
openssl = "0.10"
1818
tokio = "1.0"
1919
tokio-openssl = "0.6"
20-
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }
20+
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres", default-features = false }
2121

2222
[dev-dependencies]
2323
futures-util = { version = "0.3", default-features = false }

postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bytes = "1.0"
4444
fallible-iterator = "0.2"
4545
futures-util = { version = "0.3.14", features = ["sink"] }
4646
log = "0.4"
47-
tokio-postgres = { version = "0.7.13", path = "../tokio-postgres" }
47+
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres" }
4848
tokio = { version = "1.0", features = ["rt", "time"] }
4949

5050
[dev-dependencies]

tokio-postgres/CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Change Log
22

3-
## Unreleased
3+
## v0.7.14 - 2025-09-25
4+
5+
### Added
6+
7+
* Added support for `jiff` v0.2.
8+
* Added support for `bit-vec` versions v0.7 and v0.8.
9+
* Re-exported `fallible-iterator`
10+
* Expose sync rollback as a private API method
11+
12+
### Fixes
13+
14+
* Changed `set_tcp_user_timeout` to only be called when enabled
15+
16+
### Changed
17+
18+
* Updated repository links to use `rust-postgres` organization.
19+
* Upgraded to Rust 2021 edition.
20+
* Upgraded `phf` to v0.13
21+
* Upgraded `socket2` to v0.6
22+
* Disabled default features of `futures-util`
423

524
## v0.7.13 - 2025-02-02
625

tokio-postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.7.13"
3+
version = "0.7.14"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)