Skip to content

Commit 3252456

Browse files
committed
Release postgres-types v0.2.1
1 parent a598c52 commit 3252456

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

postgres-types/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Change Log
22

3-
## Unreleased
3+
## v0.2.1 - 2021-04-03
44

55
### Added
66

77
* Added support for `geo-types` 0.7 via `with-geo-types-0_7` feature.
8+
* Added the `PgLsn` type, corresponding to `PG_LSN`.
89

910
## v0.2.0 - 2020-12-25
1011

postgres-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-types"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -24,7 +24,7 @@ with-time-0_2 = ["time-02"]
2424
[dependencies]
2525
bytes = "1.0"
2626
fallible-iterator = "0.2"
27-
postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" }
27+
postgres-protocol = { version = "0.6.1", path = "../postgres-protocol" }
2828
postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-derive" }
2929

3030
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }

postgres-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
//! Happy,
106106
//! }
107107
//! ```
108-
#![doc(html_root_url = "https://docs.rs/postgres-types/0.1")]
108+
#![doc(html_root_url = "https://docs.rs/postgres-types/0.2")]
109109
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
110110

111111
use fallible_iterator::FallibleIterator;

0 commit comments

Comments
 (0)