File tree 3 files changed +13
-2
lines changed
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.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
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
+
7
18
## 0.8.0 (August 28th, 2023)
8
19
9
20
### Added
Original file line number Diff line number Diff line change 1
1
from databases .core import Database , DatabaseURL
2
2
3
- __version__ = "0.8 .0"
3
+ __version__ = "0.9 .0"
4
4
__all__ = ["Database" , "DatabaseURL" ]
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def get_packages(package):
37
37
setup (
38
38
name = "databases" ,
39
39
version = get_version ("databases" ),
40
- python_requires = ">=3.7 " ,
40
+ python_requires = ">=3.8 " ,
41
41
url = "https://github.com/encode/databases" ,
42
42
license = "BSD" ,
43
43
description = "Async database support for Python." ,
You can’t perform that action at this time.
0 commit comments