From f6b28ad67c01e6d5f9c9d73da424f24fcbcb410f Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 14 Jan 2022 15:56:38 +0100 Subject: [PATCH] Version 0.5.4 (#441) --- CHANGELOG.md | 12 ++++++++++++ databases/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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"]