From 5498bb85c62cbe71da16731e9f25e8727a098c80 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 26 Sep 2023 23:25:55 +0200 Subject: [PATCH] chore: bump psycopg package version to 3.1.12 --- docs/news.rst | 10 +++++----- psycopg/psycopg/version.py | 2 +- psycopg_c/psycopg_c/version.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/news.rst b/docs/news.rst index 3e2cd43d5..f11e6eab4 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -7,17 +7,17 @@ ``psycopg`` release notes ========================= -Psycopg 3.1.12 (unreleased) -^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Current release +--------------- + +Psycopg 3.1.12 +^^^^^^^^^^^^^^ - Fix possible hanging if a connection is closed while querying (:ticket:`#608`). - Fix memory leak when `~register_*()` functions are called repeatedly (:ticket:`#647`). -Current release ---------------- - Psycopg 3.1.11 ^^^^^^^^^^^^^^ diff --git a/psycopg/psycopg/version.py b/psycopg/psycopg/version.py index a33420c8b..4392043ff 100644 --- a/psycopg/psycopg/version.py +++ b/psycopg/psycopg/version.py @@ -8,7 +8,7 @@ psycopg distribution version file. # https://www.python.org/dev/peps/pep-0440/ # STOP AND READ! if you change: -__version__ = "3.1.12.dev1" +__version__ = "3.1.12" # also change: # - `docs/news.rst` to declare this as the current version or an unreleased one # - `psycopg_c/psycopg_c/version.py` to the same version. diff --git a/psycopg_c/psycopg_c/version.py b/psycopg_c/psycopg_c/version.py index 5cf1839ac..c8bc33d55 100644 --- a/psycopg_c/psycopg_c/version.py +++ b/psycopg_c/psycopg_c/version.py @@ -6,6 +6,6 @@ psycopg-c distribution version file. # Use a versioning scheme as defined in # https://www.python.org/dev/peps/pep-0440/ -__version__ = "3.1.12.dev1" +__version__ = "3.1.12" # also change psycopg/psycopg/version.py accordingly. -- 2.47.2