From a598c52906a432cd0670d8aba60a1dd174484ed8 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 3 Apr 2021 17:06:51 -0400 Subject: [PATCH] Release postgres-protocol v0.6.1 --- postgres-protocol/CHANGELOG.md | 11 +++++++++++ postgres-protocol/Cargo.toml | 2 +- postgres-protocol/src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/postgres-protocol/CHANGELOG.md b/postgres-protocol/CHANGELOG.md index 4040c3ba2..7a51cb192 100644 --- a/postgres-protocol/CHANGELOG.md +++ b/postgres-protocol/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## v0.6.1 - 2021-04-03 + +### Added + +* Added the `password` module, which can be used to hash passwords before using them in queries like `ALTER USER`. +* Added type conversions for `LSN`. + +### Changed + +* Moved from `md5` to `md-5`. + ## v0.6.0 - 2020-12-25 ### Changed diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index 1224c633d..4fd288697 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-protocol" -version = "0.6.0" +version = "0.6.1" authors = ["Steven Fackler "] edition = "2018" description = "Low level Postgres protocol APIs" diff --git a/postgres-protocol/src/lib.rs b/postgres-protocol/src/lib.rs index c9fe0ee19..8b6ff508d 100644 --- a/postgres-protocol/src/lib.rs +++ b/postgres-protocol/src/lib.rs @@ -9,7 +9,7 @@ //! //! This library assumes that the `client_encoding` backend parameter has been //! set to `UTF8`. It will most likely not behave properly if that is not the case. -#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.5")] +#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.6")] #![warn(missing_docs, rust_2018_idioms, clippy::all)] use byteorder::{BigEndian, ByteOrder};