Skip to content

Commit 6f7ab44

Browse files
committed
Release postgres-types v0.2.6
1 parent 43e1569 commit 6f7ab44

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

postgres-types/CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
# Change Log
22

3+
## v0.2.6 - 2023-08-19
4+
5+
### Fixed
6+
7+
* Fixed serialization to `OIDVECTOR` and `INT2VECTOR`.
8+
9+
### Added
10+
11+
* Removed the `'static` requirement for the `impl BorrowToSql for Box<dyn ToSql>`.
12+
* Added a `ToSql` implementation for `Cow<[u8]>`.
13+
314
## v0.2.5 - 2023-03-27
415

5-
## Added
16+
### Added
617

718
* Added support for multi-range types.
819

920
## v0.2.4 - 2022-08-20
1021

11-
## Added
22+
### Added
1223

1324
* Added `ToSql` and `FromSql` implementations for `Box<[T]>`.
1425
* Added `ToSql` and `FromSql` implementations for `[u8; N]` via the `array-impls` feature.

postgres-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-types"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

postgres-types/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@
174174
//! Meh,
175175
//! }
176176
//! ```
177-
#![doc(html_root_url = "https://docs.rs/postgres-types/0.2")]
178177
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
179178
use fallible_iterator::FallibleIterator;
180179
use postgres_protocol::types::{self, ArrayDimension};

0 commit comments

Comments
 (0)