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"]