Skip to content

Commit

Permalink
Release tokio-postgres v0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 20, 2023
1 parent 6f7ab44 commit 3d0a593
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
13 changes: 13 additions & 0 deletions tokio-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## v0.7.9

## Fixed

* Fixed builds on OpenBSD.

## Added

* Added the `js` feature for WASM support.
* Added support for the `hostaddr` config option to bypass DNS lookups.
* Added support for the `load_balance_hosts` config option to randomize connection ordering.
* The `user` config option now defaults to the executing process's user.

## v0.7.8

## Added
Expand Down
4 changes: 2 additions & 2 deletions tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.8"
version = "0.7.9"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -55,7 +55,7 @@ percent-encoding = "2.0"
pin-project-lite = "0.2"
phf = "0.11"
postgres-protocol = { version = "0.6.6", path = "../postgres-protocol" }
postgres-types = { version = "0.2.4", path = "../postgres-types" }
postgres-types = { version = "0.2.5", path = "../postgres-types" }
tokio = { version = "1.27", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
rand = "0.8.5"
Expand Down
1 change: 0 additions & 1 deletion tokio-postgres/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
//! | `with-time-0_2` | Enable support for the 0.2 version of the `time` crate. | [time](https://crates.io/crates/time/0.2.0) 0.2 | no |
//! | `with-time-0_3` | Enable support for the 0.3 version of the `time` crate. | [time](https://crates.io/crates/time/0.3.0) 0.3 | no |
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.7")]
#![warn(rust_2018_idioms, clippy::all, missing_docs)]

pub use crate::cancel_token::CancelToken;
Expand Down

0 comments on commit 3d0a593

Please sign in to comment.