diff --git a/CHANGELOG.md b/CHANGELOG.md index 1152de5a..e8ef0174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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) + +### Changed + +* 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/README.md b/README.md index 89107f2c..f40cd173 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Databases is suitable for integrating against any async Web framework, such as [ **Documentation**: [https://www.encode.io/databases/](https://www.encode.io/databases/) -**Requirements**: Python 3.7+ +**Requirements**: Python 3.8+ --- @@ -115,4 +115,4 @@ for examples of how to start using databases together with SQLAlchemy core expre [quart]: https://gitlab.com/pgjones/quart [aiohttp]: https://github.com/aio-libs/aiohttp [tornado]: https://github.com/tornadoweb/tornado -[fastapi]: https://github.com/tiangolo/fastapi \ No newline at end of file +[fastapi]: https://github.com/tiangolo/fastapi 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/docs/index.md b/docs/index.md index fba3f147..7c3cebf2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,7 +17,7 @@ expression language, and provides support for PostgreSQL, MySQL, and SQLite. Databases is suitable for integrating against any async Web framework, such as [Starlette][starlette], [Sanic][sanic], [Responder][responder], [Quart][quart], [aiohttp][aiohttp], [Tornado][tornado], or [FastAPI][fastapi]. -**Requirements**: Python 3.7+ +**Requirements**: Python 3.8+ --- @@ -113,4 +113,4 @@ for examples of how to start using databases together with SQLAlchemy core expre [quart]: https://gitlab.com/pgjones/quart [aiohttp]: https://github.com/aio-libs/aiohttp [tornado]: https://github.com/tornadoweb/tornado -[fastapi]: https://github.com/tiangolo/fastapi \ No newline at end of file +[fastapi]: https://github.com/tiangolo/fastapi 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.",