File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
14
## v0.2.5 - 2023-03-27
4
15
5
- ## Added
16
+ ### Added
6
17
7
18
* Added support for multi-range types.
8
19
9
20
## v0.2.4 - 2022-08-20
10
21
11
- ## Added
22
+ ### Added
12
23
13
24
* Added ` ToSql ` and ` FromSql ` implementations for ` Box<[T]> ` .
14
25
* Added ` ToSql ` and ` FromSql ` implementations for ` [u8; N] ` via the ` array-impls ` feature.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres-types"
3
- version = " 0.2.5 "
3
+ version = " 0.2.6 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 174
174
//! Meh,
175
175
//! }
176
176
//! ```
177
- #![ doc( html_root_url = "https://docs.rs/postgres-types/0.2" ) ]
178
177
#![ warn( clippy:: all, rust_2018_idioms, missing_docs) ]
179
178
use fallible_iterator:: FallibleIterator ;
180
179
use postgres_protocol:: types:: { self , ArrayDimension } ;
You can’t perform that action at this time.
0 commit comments