Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Feb 23, 2024
1 parent 40079f9 commit 818fcbe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.9.0 (February 23th, 2024)

* Drop support for Python 3.7 and add support for Python 3.12 ([#583][#583])
* Add support for SQLAlchemy 2+ ([#540][#540])
* Allow SSL string parameters in PostgresSQL URL ([#575][#575]) and ([#576][#576])

[#583]: https://github.com/encode/databases/pull/583
[#540]: https://github.com/encode/databases/pull/540
[#575]: https://github.com/encode/databases/pull/575
[#576]: https://github.com/encode/databases/pull/576

## 0.8.0 (August 28th, 2023)

### Added
Expand Down
2 changes: 1 addition & 1 deletion databases/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from databases.core import Database, DatabaseURL

__version__ = "0.8.0"
__version__ = "0.9.0"
__all__ = ["Database", "DatabaseURL"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_packages(package):
setup(
name="databases",
version=get_version("databases"),
python_requires=">=3.7",
python_requires=">=3.8",
url="https://github.com/encode/databases",
license="BSD",
description="Async database support for Python.",
Expand Down

0 comments on commit 818fcbe

Please sign in to comment.