Skip to content

Commit 818fcbe

Browse files
committed
Release 0.9.0
1 parent 40079f9 commit 818fcbe

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.9.0 (February 23th, 2024)
8+
9+
* Drop support for Python 3.7 and add support for Python 3.12 ([#583][#583])
10+
* Add support for SQLAlchemy 2+ ([#540][#540])
11+
* Allow SSL string parameters in PostgresSQL URL ([#575][#575]) and ([#576][#576])
12+
13+
[#583]: https://github.com/encode/databases/pull/583
14+
[#540]: https://github.com/encode/databases/pull/540
15+
[#575]: https://github.com/encode/databases/pull/575
16+
[#576]: https://github.com/encode/databases/pull/576
17+
718
## 0.8.0 (August 28th, 2023)
819

920
### Added

Diff for: databases/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from databases.core import Database, DatabaseURL
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.9.0"
44
__all__ = ["Database", "DatabaseURL"]

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_packages(package):
3737
setup(
3838
name="databases",
3939
version=get_version("databases"),
40-
python_requires=">=3.7",
40+
python_requires=">=3.8",
4141
url="https://github.com/encode/databases",
4242
license="BSD",
4343
description="Async database support for Python.",

0 commit comments

Comments
 (0)