File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ futures = "0.3"
2020native-tls = " 0.2"
2121tokio = " 1.0"
2222tokio-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 ]
2626tokio = { version = " 1.0" , features = [" full" ] }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ futures = "0.3"
2020openssl = " 0.10"
2121tokio = " 1.0"
2222tokio-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 ]
2626tokio = { version = " 1.0" , features = [" full" ] }
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
3333bytes = " 1.0"
3434fallible-iterator = " 0.2"
3535futures = " 0.3"
36- tokio-postgres = { version = " 0.6 .0" , path = " ../tokio-postgres" }
36+ tokio-postgres = { version = " 0.7 .0" , path = " ../tokio-postgres" }
3737
3838tokio = { version = " 1.0" , features = [" rt" , " time" ] }
3939log = " 0.4"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11[package ]
22name = " tokio-postgres"
3- version = " 0.6 .0"
3+ version = " 0.7 .0"
44authors = [" Steven Fackler <sfackler@gmail.com>" ]
55edition = " 2018"
66license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 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
118118pub use crate :: cancel_token:: CancelToken ;
You can’t perform that action at this time.
0 commit comments