From 57f55127193665cda1036f63639664536237a422 Mon Sep 17 00:00:00 2001 From: Altair Bow Date: Sat, 6 Apr 2024 17:39:55 +0800 Subject: [PATCH] 1.2.5 --- README.md | 4 ++++ dj_db_conn_pool/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 91b3eba..30035e7 100644 --- a/README.md +++ b/README.md @@ -186,3 +186,7 @@ with connections["default"].cursor() as cursor: cursor.execute('select name, phone from users where name = %(name)s', params={"name": "Altair"}) result = cursor.fetchall() ``` + +### Acknowledgments +- Thanks to all friends who provided PR and suggestions ! +- Thanks to [JetBrains](https://www.jetbrains.com/?from=django-db-connection-pool) for providing development tools for django-db-connection-pool ! diff --git a/dj_db_conn_pool/__init__.py b/dj_db_conn_pool/__init__.py index 7fc1f65..185114d 100644 --- a/dj_db_conn_pool/__init__.py +++ b/dj_db_conn_pool/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.2.4' +__version__ = '1.2.5' __author__ = 'Altair Bow' __author_email__ = 'altair.bow@foxmail.com' __description__ = 'Persistent database connection backends for Django'