Release postgres-protocol v0.6.1
This commit is contained in:
parent
844a27a074
commit
a598c52906
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user