From 0b5e63cac2a50d4409051c2c066cc80d4d35b862 Mon Sep 17 00:00:00 2001 From: Yury Pliner Date: Wed, 26 Oct 2022 09:57:57 +0100 Subject: [PATCH] Release 1.4.0 --- CHANGES.txt | 6 ++++++ aiopg/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2f85ecf9..f4d7c3fe 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,9 @@ +1.4.0 (2022-10-26) +^^^^^^^^^^^^^^^^^^ + +* Add python 3.11 and drop python 3.6 support` #892 `_ + + 1.3.5 (2022-09-25) ^^^^^^^^^^^^^^^^^^ diff --git a/aiopg/__init__.py b/aiopg/__init__.py index e8e27eee..42a278e3 100644 --- a/aiopg/__init__.py +++ b/aiopg/__init__.py @@ -41,7 +41,7 @@ "Transaction", ) -__version__ = "1.3.5" +__version__ = "1.4.0" version = f"{__version__}, Python {sys.version}"