File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
14
## v0.6.0 - 2020-12-25
4
15
5
16
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres-protocol"
3
- version = " 0.6.0 "
3
+ version = " 0.6.1 "
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
edition = " 2018"
6
6
description = " Low level Postgres protocol APIs"
Original file line number Diff line number Diff line change 9
9
//!
10
10
//! This library assumes that the `client_encoding` backend parameter has been
11
11
//! 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 " ) ]
13
13
#![ warn( missing_docs, rust_2018_idioms, clippy:: all) ]
14
14
15
15
use byteorder:: { BigEndian , ByteOrder } ;
You can’t perform that action at this time.
0 commit comments