Skip to content

Commit

Permalink
Release postgres v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 25, 2020
1 parent 4fb6fd9 commit de831c3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion postgres-native-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur

[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
postgres = { version = "0.18.0", path = "../postgres" }
postgres = { version = "0.19.0", path = "../postgres" }
2 changes: 1 addition & 1 deletion postgres-openssl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-featur

[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
postgres = { version = "0.18.0", path = "../postgres" }
postgres = { version = "0.19.0", path = "../postgres" }
16 changes: 14 additions & 2 deletions postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# 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

Expand Down Expand Up @@ -69,7 +81,7 @@
* `Client::query_raw` now returns a named type.
* `Client::copy_in` and `Client::copy_out` no longer take query parameters as PostgreSQL doesn't support them in COPY
queries.

### Removed

* Removed support for `uuid` 0.7.
Expand Down
2 changes: 1 addition & 1 deletion postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.18.1"
version = "0.19.0"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion postgres/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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-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 |
#![doc(html_root_url = "https://docs.rs/postgres/0.17")]
#![warn(clippy::all, rust_2018_idioms, missing_docs)]

pub use fallible_iterator;
Expand Down

0 comments on commit de831c3

Please sign in to comment.