Release postgres-protocol v0.6.1

This commit is contained in:
Steven Fackler 2021-04-03 17:06:51 -04:00
parent 844a27a074
commit a598c52906
3 changed files with 13 additions and 2 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "postgres-protocol"
version = "0.6.0"
version = "0.6.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
description = "Low level Postgres protocol APIs"

View File

@ -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};