Skip to content

Commit de831c3

Browse files
committed
Release postgres v0.19.0
1 parent 4fb6fd9 commit de831c3

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur
2424

2525
[dev-dependencies]
2626
tokio = { version = "1.0", features = ["full"] }
27-
postgres = { version = "0.18.0", path = "../postgres" }
27+
postgres = { version = "0.19.0", path = "../postgres" }

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur
2424

2525
[dev-dependencies]
2626
tokio = { version = "1.0", features = ["full"] }
27-
postgres = { version = "0.18.0", path = "../postgres" }
27+
postgres = { version = "0.19.0", path = "../postgres" }

postgres/CHANGELOG.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Change Log
22

3-
## v0.18.1 - 20201-10-19
3+
## v0.19.0 - 2020-12-25
4+
5+
### Changed
6+
7+
* Upgraded to `tokio-postgres` 0.7.
8+
* Methods taking iterators of `ToSql` values can now take both `&dyn ToSql` and `T: ToSql` values.
9+
10+
### Added
11+
12+
* Added `Client::is_valid` which can be used to check that the connection is still alive with a
13+
timeout.
14+
15+
## v0.18.1 - 2020-10-19
416

517
### Fixed
618

@@ -69,7 +81,7 @@
6981
* `Client::query_raw` now returns a named type.
7082
* `Client::copy_in` and `Client::copy_out` no longer take query parameters as PostgreSQL doesn't support them in COPY
7183
queries.
72-
84+
7385
### Removed
7486

7587
* Removed support for `uuid` 0.7.

postgres/Cargo.toml

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

postgres/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
6262
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
6363
//! | `with-time-0_2` | Enable support for the `time` crate. | [time](https://crates.io/crates/time) 0.2 | no |
64-
#![doc(html_root_url = "https://docs.rs/postgres/0.17")]
6564
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
6665

6766
pub use fallible_iterator;

0 commit comments

Comments
 (0)