From 818fcbe0c8f53094a1f4b8f8b44eebc821a8e23b Mon Sep 17 00:00:00 2001 From: tarsil Date: Fri, 23 Feb 2024 09:55:18 +0000 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 11 +++++++++++ databases/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1152de5a..bebb888b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/databases/__init__.py b/databases/__init__.py index cb4f95c3..e7390984 100644 --- a/databases/__init__.py +++ b/databases/__init__.py @@ -1,4 +1,4 @@ from databases.core import Database, DatabaseURL -__version__ = "0.8.0" +__version__ = "0.9.0" __all__ = ["Database", "DatabaseURL"] diff --git a/setup.py b/setup.py index 0793e5e3..41c0c584 100644 --- a/setup.py +++ b/setup.py @@ -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.",