From fbea46d28bda46ba86e940645b456d5ca7f8f5a3 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Mon, 30 May 2022 18:02:24 +0200 Subject: [PATCH] Version 0.6.0 (#444) --- CHANGELOG.md | 16 ++++++++++++++++ databases/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a52f44..abe7da92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ 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/). +## 0.6.0 (May 29th, 2022) + +* Dropped Python 3.6 support (#458) + +### Added + +* Add _mapping property to the result set interface (#447 ) +* Add contributing docs (#453 ) + +### Fixed + +* Fix query result named access (#448) +* Fix connections getting into a bad state when a task is cancelled (#457) +* Revert #328 parallel transactions (#472) +* Change extra installations to specific drivers (#436) + ## 0.5.4 (January 14th, 2022) ### Added diff --git a/databases/__init__.py b/databases/__init__.py index 522b63df..8dd420b2 100644 --- a/databases/__init__.py +++ b/databases/__init__.py @@ -1,4 +1,4 @@ from databases.core import Database, DatabaseURL -__version__ = "0.5.4" +__version__ = "0.6.0" __all__ = ["Database", "DatabaseURL"]