Skip to content

Commit 5433118

Browse files
committedAug 21, 2022
Release postgres v0.19.4
1 parent 8e4484c commit 5433118

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎postgres/CHANGELOG.md

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

3+
## v0.19.4 - 2022-08-21
4+
5+
## Added
6+
7+
* Added `ToSql` and `FromSql` implementations for `[u8; N]` via the `array-impls` feature.
8+
* Added support for `smol_str` 0.1 via the `with-smol_str-01` feature.
9+
* Added `ToSql::encode_format` to support text encodings of parameters.
10+
311
## v0.19.3 - 2022-04-30
412

513
### Added

‎postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.19.3"
3+
version = "0.19.4"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -39,7 +39,7 @@ with-time-0_3 = ["tokio-postgres/with-time-0_3"]
3939
bytes = "1.0"
4040
fallible-iterator = "0.2"
4141
futures-util = { version = "0.3", features = ["sink"] }
42-
tokio-postgres = { version = "0.7.6", path = "../tokio-postgres" }
42+
tokio-postgres = { version = "0.7.7", path = "../tokio-postgres" }
4343

4444
tokio = { version = "1.0", features = ["rt", "time"] }
4545
log = "0.4"

0 commit comments

Comments
 (0)