From 8b321bf336f13e6d6b5d3a8e5855ce8703919ca9 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Wed, 15 Jan 2020 01:30:19 -0800 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e923d0c..7fca5027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,21 @@ 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). -## Unreleased +## 0.2.0 - 2020-01-15 + +### Fixed + + - https://github.com/launchbadge/sqlx/issues/47 + +### Added + + - Support Tokio through an optional `runtime-tokio` feature. + + - Support SQL transactions. You may now use the `begin()` function on `Pool` or `Connection` to + start a new SQL transaction. This returns `sqlx::Transaction` which will `ROLLBACK` on `Drop` + or can be explicitly `COMMIT` using `commit()`. + + - Support TLS connections. ## 0.1.4 - 2020-01-11