From 32524569c2dd0be0bbeb6ed8fd82fe2f33d77a01 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 3 Apr 2021 17:10:03 -0400 Subject: [PATCH] Release postgres-types v0.2.1 --- postgres-types/CHANGELOG.md | 3 ++- postgres-types/Cargo.toml | 4 ++-- postgres-types/src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/postgres-types/CHANGELOG.md b/postgres-types/CHANGELOG.md index 9f9da798..83bc4d1f 100644 --- a/postgres-types/CHANGELOG.md +++ b/postgres-types/CHANGELOG.md @@ -1,10 +1,11 @@ # Change Log -## Unreleased +## v0.2.1 - 2021-04-03 ### Added * Added support for `geo-types` 0.7 via `with-geo-types-0_7` feature. +* Added the `PgLsn` type, corresponding to `PG_LSN`. ## v0.2.0 - 2020-12-25 diff --git a/postgres-types/Cargo.toml b/postgres-types/Cargo.toml index 7d48596a..1d7f2cc9 100644 --- a/postgres-types/Cargo.toml +++ b/postgres-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "postgres-types" -version = "0.2.0" +version = "0.2.1" authors = ["Steven Fackler "] edition = "2018" license = "MIT/Apache-2.0" @@ -24,7 +24,7 @@ with-time-0_2 = ["time-02"] [dependencies] bytes = "1.0" fallible-iterator = "0.2" -postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" } +postgres-protocol = { version = "0.6.1", path = "../postgres-protocol" } postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" } bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true } diff --git a/postgres-types/src/lib.rs b/postgres-types/src/lib.rs index e9a7c10a..5c483bd7 100644 --- a/postgres-types/src/lib.rs +++ b/postgres-types/src/lib.rs @@ -105,7 +105,7 @@ //! Happy, //! } //! ``` -#![doc(html_root_url = "https://docs.rs/postgres-types/0.1")] +#![doc(html_root_url = "https://docs.rs/postgres-types/0.2")] #![warn(clippy::all, rust_2018_idioms, missing_docs)] use fallible_iterator::FallibleIterator;