Release postgres v0.19.0
This commit is contained in:
parent
4fb6fd906f
commit
de831c3a53
@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
postgres = { version = "0.18.0", path = "../postgres" }
|
postgres = { version = "0.19.0", path = "../postgres" }
|
||||||
|
@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
postgres = { version = "0.18.0", path = "../postgres" }
|
postgres = { version = "0.19.0", path = "../postgres" }
|
||||||
|
@ -1,6 +1,18 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## v0.18.1 - 20201-10-19
|
## v0.19.0 - 2020-12-25
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Upgraded to `tokio-postgres` 0.7.
|
||||||
|
* Methods taking iterators of `ToSql` values can now take both `&dyn ToSql` and `T: ToSql` values.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added `Client::is_valid` which can be used to check that the connection is still alive with a
|
||||||
|
timeout.
|
||||||
|
|
||||||
|
## v0.18.1 - 2020-10-19
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "postgres"
|
name = "postgres"
|
||||||
version = "0.18.1"
|
version = "0.19.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"
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
//! | `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/postgres/0.17")]
|
|
||||||
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
|
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
|
||||||
|
|
||||||
pub use fallible_iterator;
|
pub use fallible_iterator;
|
||||||
|
Loading…
Reference in New Issue
Block a user