Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode authored Dec 19, 2020
1 parent b6cc0b4 commit 3aeb46f
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Upcoming

- [[#854]] Allow chaining `map` and `try_map` [[@jplatte]]

Additionally enables calling these combinators with the macros:

```rust
let ones: Vec<i32> = query!("SELECT 1 as foo")
.map(|row| row.foo)
.fetch_all(&mut conn).await?;
```

## 0.4.2 - 2020-12-19

- [[#908]] Fix `whoami` crash on FreeBSD platform [[@fundon]] [[@AldaronLau]]
Expand All @@ -25,16 +37,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [[#860]] Add `rename_all` to `FromRow` and add `camelCase` and `PascalCase` [[@framp]]

- [[#854]] Allow chaining `map` and `try_map` [[@jplatte]]

Additionally enables calling these combinators with the macros:

```rust
let ones: Vec<i32> = query!("SELECT 1 as foo")
.map(|row| row.foo)
.fetch_all(&mut conn).await?;
```

- [[#839]] Add (optional) support for `bstr::BStr`, `bstr::BString`, and `git2::Oid` [[@joshtriplett]]

#### SQLite
Expand Down

0 comments on commit 3aeb46f

Please sign in to comment.