diff --git a/CHANGELOG.md b/CHANGELOG.md index 63a8679f..c0a52f44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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.4 (January 14th, 2022) + +### Added + +* Support for Unix domain in connections (#423) +* Added `asyncmy` MySQL driver (#382) + +### Fixed + +* Fix SQLite fetch queries with multiple parameters (#435) +* Changed `Record` type to `Sequence` (#408) + ## 0.5.3 (October 10th, 2021) ### Added diff --git a/databases/__init__.py b/databases/__init__.py index 1e8ef323..522b63df 100644 --- a/databases/__init__.py +++ b/databases/__init__.py @@ -1,4 +1,4 @@ from databases.core import Database, DatabaseURL -__version__ = "0.5.3" +__version__ = "0.5.4" __all__ = ["Database", "DatabaseURL"]