]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.12 3.1.12
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 26 Sep 2023 21:25:55 +0000 (23:25 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 26 Sep 2023 21:25:55 +0000 (23:25 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 3e2cd43d59ac94aa8ebffdd37e852c3469e5e32b..f11e6eab4b49ea280e42a3fcbfc53299f65fe8af 100644 (file)
@@ -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
 ^^^^^^^^^^^^^^
 
index a33420c8b231b17e01d8cbf63bf1515657289f12..4392043ffee8a66532ec93c51c320961587923c5 100644 (file)
@@ -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.
index 5cf1839acb55b3c1557d7e3bf0cd739e22a8135b..c8bc33d5545d1885b4351c89c8637d5c5dcc35f0 100644 (file)
@@ -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.