Release postgres-types v0.2.1

This commit is contained in:
Steven Fackler
2021-04-03 17:10:03 -04:00
parent a598c52906
commit 32524569c2
3 changed files with 5 additions and 4 deletions

View File

@@ -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

View File

@@ -1,6 +1,6 @@
[package]
name = "postgres-types"
version = "0.2.0"
version = "0.2.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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 }

View File

@@ -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;