From: Daniele Varrazzo Date: Tue, 26 Sep 2023 21:25:55 +0000 (+0200) Subject: chore: bump psycopg package version to 3.1.12 X-Git-Tag: 3.1.12^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5498bb85c62cbe71da16731e9f25e8727a098c80;p=thirdparty%2Fpsycopg.git chore: bump psycopg package version to 3.1.12 --- 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.