Release postgres-openssl v0.5.0

This commit is contained in:
Steven Fackler 2020-12-25 09:20:58 -05:00
parent eeee279277
commit 6e9ee0fa84
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Change Log # Change Log
## v0.5.0 - 2020-12-25
### Changed
* Upgraded to `tokio-postgres` 0.7.
## v0.4.0 - 2020-10-17 ## v0.4.0 - 2020-10-17
### Changed ### Changed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "postgres-openssl" name = "postgres-openssl"
version = "0.4.0" version = "0.5.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"

View File

@ -39,7 +39,6 @@
//! # Ok(()) //! # Ok(())
//! # } //! # }
//! ``` //! ```
#![doc(html_root_url = "https://docs.rs/postgres-openssl/0.3")]
#![warn(rust_2018_idioms, clippy::all, missing_docs)] #![warn(rust_2018_idioms, clippy::all, missing_docs)]
#[cfg(feature = "runtime")] #[cfg(feature = "runtime")]