From de2b78dcefacc9eeafca742c3070ca194960043d Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 27 Nov 2019 20:38:32 -0500 Subject: [PATCH] Release postgres-types v0.1.0-alpha.2 --- postgres-types/CHANGELOG.md | 12 ++++++++++++ postgres-types/Cargo.toml | 2 +- tokio-postgres/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 postgres-types/CHANGELOG.md diff --git a/postgres-types/CHANGELOG.md b/postgres-types/CHANGELOG.md new file mode 100644 index 00000000..071a2e65 --- /dev/null +++ b/postgres-types/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +## v0.1.0-alpha.2 - 2019-11-27 + +### Changed + +* Upgraded `bytes` to 0.5. +* Upgraded `uuid` to 0.8. + +## v0.1.0-alpha.1 - 2019-10-14 + +Initial release diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index ed14afd0..0042b6d2 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-types" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 501d3eb0..f1137c8a 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -45,7 +45,7 @@ percent-encoding = "2.0" pin-project-lite = "0.1" phf = "0.8" postgres-protocol = { version = "=0.5.0-alpha.2", path = "../postgres-protocol" } -postgres-types = { version = "=0.1.0-alpha.1", path = "../postgres-types" } +postgres-types = { version = "=0.1.0-alpha.2", path = "../postgres-types" } tokio = { version = "0.2", features = ["io-util"] } tokio-util = { version = "0.2", features = ["codec"] }