Skip to content

Commit

Permalink
Release 0.9.0 (#584)
Browse files Browse the repository at this point in the history
* Release 0.9.0
  • Loading branch information
tarsil committed Mar 1, 2024
1 parent 40079f9 commit ae3fb16
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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+

---

Expand Down Expand Up @@ -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
[fastapi]: https://github.com/tiangolo/fastapi
2 changes: 1 addition & 1 deletion databases/__init__.py
@@ -1,4 +1,4 @@
from databases.core import Database, DatabaseURL

__version__ = "0.8.0"
__version__ = "0.9.0"
__all__ = ["Database", "DatabaseURL"]
4 changes: 2 additions & 2 deletions docs/index.md
Expand Up @@ -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+

---

Expand Down Expand Up @@ -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
[fastapi]: https://github.com/tiangolo/fastapi
2 changes: 1 addition & 1 deletion setup.py
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 ae3fb16

Please sign in to comment.