Skip to content

Commit 3d08732

Browse files
committed
0.17.0
1 parent 0b0a250 commit 3d08732

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## 0.17.0 - 2021-10-06
9+
10+
+ [[#157]] Fix binding nullable custom types on db drivers
11+
12+
The `as_ref_*` methods on `Value` are changed:
13+
14+
```rust
15+
pub fn as_ref_json(&self) -> &Json;
16+
```
17+
18+
Is now
19+
20+
```rust
21+
pub fn as_ref_json(&self) -> Option<&Json>;
22+
```
23+
24+
[#157]: https://github.com/SeaQL/sea-query/pull/157
25+
826
## 0.16.5 - 2021-09-30
927

1028
+ [[#145]] Add Condition::not

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414

1515
[package]
1616
name = "sea-query"
17-
version = "0.16.5"
17+
version = "0.17.0"
1818
authors = [
1919
"Chris Tsang <[email protected]>",
2020
"Billy Chan <[email protected]>",

0 commit comments

Comments
 (0)