File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,21 @@ 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
- ## Unreleased
8
+ ## 0.2.0 - 2020-01-15
9
+
10
+ ### Fixed
11
+
12
+ - https://github.com/launchbadge/sqlx/issues/47
13
+
14
+ ### Added
15
+
16
+ - Support Tokio through an optional ` runtime-tokio ` feature.
17
+
18
+ - Support SQL transactions. You may now use the ` begin() ` function on ` Pool ` or ` Connection ` to
19
+ start a new SQL transaction. This returns ` sqlx::Transaction ` which will ` ROLLBACK ` on ` Drop `
20
+ or can be explicitly ` COMMIT ` using ` commit() ` .
21
+
22
+ - Support TLS connections.
9
23
10
24
## 0.1.4 - 2020-01-11
11
25
You can’t perform that action at this time.
0 commit comments