File tree 4 files changed +25
-3
lines changed
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ ## [ Unreleased]
4
+
5
+ ## [ v0.4.0] - 2019-05-03
6
+
7
+ ### Added
8
+
9
+ * Added channel binding support to SCRAM authentication API.
10
+
11
+ ### Changed
12
+
13
+ * Passwords are no longer required to be UTF8 strings.
14
+ * ` types::array_to_sql ` now automatically computes the required flags and no longer takes a has_nulls parameter.
15
+
16
+ ## Older
17
+
18
+ Look at the [ release tags] for information about older releases.
19
+
20
+ [ Unreleased ] : https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...master
21
+ [ v0.4.0 ] : https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.3.2...postgres-protocol-v0.4.0
22
+ [ release tags ] : https://github.com/sfackler/rust-postgres/releases
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres-protocol"
3
- version = " 0.3.2 "
3
+ version = " 0.4.0 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
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.3 " ) ]
12
+ #![ doc( html_root_url = "https://docs.rs/postgres-protocol/0.4 " ) ]
13
13
#![ warn( missing_docs, rust_2018_idioms, clippy:: all) ]
14
14
15
15
use byteorder:: { BigEndian , ByteOrder } ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ futures = "0.1.7"
45
45
log = " 0.4"
46
46
percent-encoding = " 1.0"
47
47
phf = " 0.7.23"
48
- postgres-protocol = { version = " 0.3 .0" , path = " ../postgres-protocol" }
48
+ postgres-protocol = { version = " 0.4 .0" , path = " ../postgres-protocol" }
49
49
state_machine_future = " 0.2"
50
50
tokio-codec = " 0.1"
51
51
tokio-io = " 0.1"
You can’t perform that action at this time.
0 commit comments