Release postgres-types v0.2.13 · rust-postgres/rust-postgres@64674ba

4 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,15 @@

11

# Change Log

22
3+

## v0.2.13 - 2026-03-30

4+
5+

### Added

6+
7+

* Added support for `bit-vec` 0.9 via the `with-bit-vec-0_9` feature.

8+
9+

### Changed

10+
11+

* Upgraded to Rust edition 2024, minimum Rust version 1.85.

12+
313

## v0.2.12 - 2026-01-14

414
515

### Added

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

[package]

22

name = "postgres-types"

3-

version = "0.2.12"

3+

version = "0.2.13"

44

authors = ["Steven Fackler <sfackler@gmail.com>"]

55

edition = "2024"

66

license = "MIT OR Apache-2.0"

Original file line numberDiff line numberDiff line change

@@ -62,7 +62,7 @@ percent-encoding = "2.0"

6262

pin-project-lite = "0.2.11"

6363

phf = "0.13"

6464

postgres-protocol = { version = "0.6.9", path = "../postgres-protocol" }

65-

postgres-types = { version = "0.2.10", path = "../postgres-types" }

65+

postgres-types = { version = "0.2.13", path = "../postgres-types" }

6666

tokio = { version = "1.27", features = ["io-util"] }

6767

tokio-util = { version = "0.7", features = ["codec"] }

6868

rand = "0.10.0"