Skip to content

Commit 4fb6fd9

Browse files
committed
Release tokio-postgres v0.7.0
1 parent 71fc3e7 commit 4fb6fd9

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures = "0.3"
2020
native-tls = "0.2"
2121
tokio = "1.0"
2222
tokio-native-tls = "0.3"
23-
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
23+
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
2424

2525
[dev-dependencies]
2626
tokio = { version = "1.0", features = ["full"] }

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures = "0.3"
2020
openssl = "0.10"
2121
tokio = "1.0"
2222
tokio-openssl = "0.6"
23-
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
23+
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
2424

2525
[dev-dependencies]
2626
tokio = { version = "1.0", features = ["full"] }

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
3333
bytes = "1.0"
3434
fallible-iterator = "0.2"
3535
futures = "0.3"
36-
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres" }
36+
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres" }
3737

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

tokio-postgres/CHANGELOG.md

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

3+
## v0.7.0 - 2020-12-25
4+
5+
### Changed
6+
7+
* Upgraded to `tokio` 1.0.
8+
* Upgraded to `postgres-types` 0.2.
9+
10+
### Added
11+
12+
* Methods taking iterators of `ToSql` values can now take both `&dyn ToSql` and `T: ToSql` values.
13+
314
## v0.6.0 - 2020-10-17
415

516
### Changed
617

7-
* Upgraded to tokio `0.3`.
18+
* Upgraded to `tokio` 0.3.
819
* Added the detail and hint fields to `DbError`'s `Display` implementation.
920

1021
## v0.5.5 - 2020-07-03

tokio-postgres/Cargo.toml

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

tokio-postgres/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
113113
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
114114
//! | `with-time-0_2` | Enable support for the `time` crate. | [time](https://crates.io/crates/time) 0.2 | no |
115-
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.6")]
115+
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.7")]
116116
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
117117

118118
pub use crate::cancel_token::CancelToken;

0 commit comments

Comments
 (0)