From 2150a2255356f0c1a529fc5363af0c4cbe7b92f3 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 10 Sep 2021 15:42:48 +0430 Subject: [PATCH] Version 0.5.2 (#386) --- CHANGELOG.md | 7 +++++++ databases/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc683d9c..b289cb76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.5.2 (September 10th, 2021) + +### Fixed + +* Reset counter for failed connections (#385) +* Avoid dangling task-local connections after Database.disconnect() (#211) + ## 0.5.1 (September 2nd, 2021) ### Added diff --git a/databases/__init__.py b/databases/__init__.py index 16a674dc..0297c536 100644 --- a/databases/__init__.py +++ b/databases/__init__.py @@ -1,4 +1,4 @@ from databases.core import Database, DatabaseURL -__version__ = "0.5.1" +__version__ = "0.5.2" __all__ = ["Database", "DatabaseURL"]