Skip to content

Commit 3aeb46f

Browse files
authored
Update CHANGELOG.md
1 parent b6cc0b4 commit 3aeb46f

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

0 commit comments

Comments
 (0)