Skip to content

Commit

Permalink
Release postgres-types v0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 20, 2023
1 parent 43e1569 commit 6f7ab44
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
15 changes: 13 additions & 2 deletions postgres-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
# Change Log

## v0.2.6 - 2023-08-19

### Fixed

* Fixed serialization to `OIDVECTOR` and `INT2VECTOR`.

### Added

* Removed the `'static` requirement for the `impl BorrowToSql for Box<dyn ToSql>`.
* Added a `ToSql` implementation for `Cow<[u8]>`.

## v0.2.5 - 2023-03-27

## Added
### Added

* Added support for multi-range types.

## v0.2.4 - 2022-08-20

## Added
### Added

* Added `ToSql` and `FromSql` implementations for `Box<[T]>`.
* Added `ToSql` and `FromSql` implementations for `[u8; N]` via the `array-impls` feature.
Expand Down
2 changes: 1 addition & 1 deletion postgres-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-types"
version = "0.2.5"
version = "0.2.6"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion postgres-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@
//! Meh,
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/postgres-types/0.2")]
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
use fallible_iterator::FallibleIterator;
use postgres_protocol::types::{self, ArrayDimension};
Expand Down

0 comments on commit 6f7ab44

Please sign in to comment.