diff --git a/CHANGELOG.md b/CHANGELOG.md index a0f30af5..d5170ee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.2 (Nov 7th, 2022) + +### Changes + +* Pinned SQLAlchemy `<=1.4.41` to avoid breaking changes (#520). + ## 0.6.1 (Aug 9th, 2022) ### Fixed diff --git a/databases/__init__.py b/databases/__init__.py index 1a4a091c..9c88e786 100644 --- a/databases/__init__.py +++ b/databases/__init__.py @@ -1,4 +1,4 @@ from databases.core import Database, DatabaseURL -__version__ = "0.6.1" +__version__ = "0.6.2" __all__ = ["Database", "DatabaseURL"]