File tree 6 files changed +17
-6
lines changed
6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ futures = "0.3"
20
20
native-tls = " 0.2"
21
21
tokio = " 1.0"
22
22
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 }
24
24
25
25
[dev-dependencies ]
26
26
tokio = { version = " 1.0" , features = [" full" ] }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ futures = "0.3"
20
20
openssl = " 0.10"
21
21
tokio = " 1.0"
22
22
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 }
24
24
25
25
[dev-dependencies ]
26
26
tokio = { 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"]
33
33
bytes = " 1.0"
34
34
fallible-iterator = " 0.2"
35
35
futures = " 0.3"
36
- tokio-postgres = { version = " 0.6 .0" , path = " ../tokio-postgres" }
36
+ tokio-postgres = { version = " 0.7 .0" , path = " ../tokio-postgres" }
37
37
38
38
tokio = { version = " 1.0" , features = [" rt" , " time" ] }
39
39
log = " 0.4"
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
14
## v0.6.0 - 2020-10-17
4
15
5
16
### Changed
6
17
7
- * Upgraded to tokio ` 0.3 ` .
18
+ * Upgraded to ` tokio ` 0.3.
8
19
* Added the detail and hint fields to ` DbError ` 's ` Display ` implementation.
9
20
10
21
## v0.5.5 - 2020-07-03
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.6 .0"
3
+ version = " 0.7 .0"
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 112
112
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
113
113
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
114
114
//! | `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 " ) ]
116
116
#![ warn( rust_2018_idioms, clippy:: all, missing_docs) ]
117
117
118
118
pub use crate :: cancel_token:: CancelToken ;
You can’t perform that action at this time.
0 commit comments