Release tokio-postgres v0.7.0
This commit is contained in:
parent
71fc3e74bd
commit
4fb6fd906f
@ -20,7 +20,7 @@ futures = "0.3"
|
|||||||
native-tls = "0.2"
|
native-tls = "0.2"
|
||||||
tokio = "1.0"
|
tokio = "1.0"
|
||||||
tokio-native-tls = "0.3"
|
tokio-native-tls = "0.3"
|
||||||
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
|
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
|
@ -20,7 +20,7 @@ futures = "0.3"
|
|||||||
openssl = "0.10"
|
openssl = "0.10"
|
||||||
tokio = "1.0"
|
tokio = "1.0"
|
||||||
tokio-openssl = "0.6"
|
tokio-openssl = "0.6"
|
||||||
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres", default-features = false }
|
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
|
@ -33,7 +33,7 @@ with-time-0_2 = ["tokio-postgres/with-time-0_2"]
|
|||||||
bytes = "1.0"
|
bytes = "1.0"
|
||||||
fallible-iterator = "0.2"
|
fallible-iterator = "0.2"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tokio-postgres = { version = "0.6.0", path = "../tokio-postgres" }
|
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres" }
|
||||||
|
|
||||||
tokio = { version = "1.0", features = ["rt", "time"] }
|
tokio = { version = "1.0", features = ["rt", "time"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@ -1,10 +1,21 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.7.0 - 2020-12-25
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Upgraded to `tokio` 1.0.
|
||||||
|
* Upgraded to `postgres-types` 0.2.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Methods taking iterators of `ToSql` values can now take both `&dyn ToSql` and `T: ToSql` values.
|
||||||
|
|
||||||
## v0.6.0 - 2020-10-17
|
## v0.6.0 - 2020-10-17
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
* Upgraded to tokio `0.3`.
|
* Upgraded to `tokio` 0.3.
|
||||||
* Added the detail and hint fields to `DbError`'s `Display` implementation.
|
* Added the detail and hint fields to `DbError`'s `Display` implementation.
|
||||||
|
|
||||||
## v0.5.5 - 2020-07-03
|
## v0.5.5 - 2020-07-03
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-postgres"
|
name = "tokio-postgres"
|
||||||
version = "0.6.0"
|
version = "0.7.0"
|
||||||
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
@ -112,7 +112,7 @@
|
|||||||
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
|
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
|
||||||
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
|
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
|
||||||
//! | `with-time-0_2` | Enable support for the `time` crate. | [time](https://crates.io/crates/time) 0.2 | no |
|
//! | `with-time-0_2` | Enable support for the `time` crate. | [time](https://crates.io/crates/time) 0.2 | no |
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.6")]
|
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.7")]
|
||||||
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
|
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
|
||||||
|
|
||||||
pub use crate::cancel_token::CancelToken;
|
pub use crate::cancel_token::CancelToken;
|
||||||
|
Loading…
Reference in New Issue
Block a user