We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81cc6fd commit 6b0c767Copy full SHA for 6b0c767
CHANGELOG.md
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file.
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
7
+## 0.7.0 (Dec 18th, 2022)
8
+
9
+### Fixed
10
11
+* Fixed breaking changes in SQLAlchemy cursor; supports `>=1.4.42,<1.5` (#513).
12
+* Wrapped types in `typing.Optional` where applicable (#510).
13
14
## 0.6.2 (Nov 7th, 2022)
15
-### Changes
16
+### Changed
17
18
* Pinned SQLAlchemy `<=1.4.41` to avoid breaking changes (#520).
19
databases/__init__.py
@@ -1,4 +1,4 @@
1
from databases.core import Database, DatabaseURL
2
3
-__version__ = "0.6.2"
+__version__ = "0.7.0"
__all__ = ["Database", "DatabaseURL"]
0 commit comments