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.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
20
## 0.4 . 2 - 2020 - 12 - 19
9
21
10
22
- [[#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
25
37
26
38
- [[#860 ]] Add `rename_all ` to `FromRow ` and add `camelCase` and `PascalCase ` [[@ framp ]]
27
39
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
-
38
40
- [[#839 ]] Add (optional ) support for `bstr :: BStr `, `bstr :: BString `, and `git2 :: Oid ` [[@ joshtriplett ]]
39
41
40
42
#### SQLite
You can’t perform that action at this time.
0 commit comments