This repository was archived by the owner on Aug 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
55The 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
Original file line number Diff line number Diff line change 11from databases .core import Database , DatabaseURL
22
3- __version__ = "0.8 .0"
3+ __version__ = "0.9 .0"
44__all__ = ["Database" , "DatabaseURL" ]
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def get_packages(package):
3737setup (
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." ,
You can’t perform that action at this time.
0 commit comments