File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## Upcoming
9+
10+ - [[ #854 ]] Allow chaining ` map ` and ` try_map ` [[ @jplatte ]]
11+
12+ Additionally enables calling these combinators with the macros:
13+
14+ ``` rust
15+ let ones : Vec <i32 > = query! (" SELECT 1 as foo" )
16+ . map (| row | row . foo)
17+ . fetch_all (& mut conn ). await ? ;
18+ ```
19+
820## 0.4 . 2 - 2020 - 12 - 19
921
1022- [[#908 ]] Fix `whoami ` crash on FreeBSD platform [[@ fundon ]] [[@ AldaronLau ]]
@@ -25,16 +37,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2537
2638- [[#860 ]] Add `rename_all ` to `FromRow ` and add `camelCase` and `PascalCase ` [[@ framp ]]
2739
28- - [[#854 ]] Allow chaining `map ` and `try_map ` [[@ jplatte ]]
29-
30- Additionally enables calling these combinators with the macros :
31-
32- ```rust
33- let ones : Vec <i32 > = query! (" SELECT 1 as foo" )
34- . map (| row | row . foo)
35- . fetch_all (& mut conn ). await ? ;
36- ```
37-
3840- [[#839 ]] Add (optional ) support for `bstr :: BStr `, `bstr :: BString `, and `git2 :: Oid ` [[@ joshtriplett ]]
3941
4042#### SQLite
You can’t perform that action at this time.
0 commit comments