Skip to content

Commit a598c52

Browse files
committed
Release postgres-protocol v0.6.1
1 parent 844a27a commit a598c52

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

postgres-protocol/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## v0.6.1 - 2021-04-03
4+
5+
### Added
6+
7+
* Added the `password` module, which can be used to hash passwords before using them in queries like `ALTER USER`.
8+
* Added type conversions for `LSN`.
9+
10+
### Changed
11+
12+
* Moved from `md5` to `md-5`.
13+
314
## v0.6.0 - 2020-12-25
415

516
### Changed

postgres-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-protocol"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
description = "Low level Postgres protocol APIs"

postgres-protocol/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! This library assumes that the `client_encoding` backend parameter has been
1111
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12-
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.5")]
12+
#![doc(html_root_url = "https://docs.rs/postgres-protocol/0.6")]
1313
#![warn(missing_docs, rust_2018_idioms, clippy::all)]
1414

1515
use byteorder::{BigEndian, ByteOrder};

0 commit comments

Comments
 (0)