]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.17 3.1.17
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 7 Jan 2024 01:41:20 +0000 (02:41 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 7 Jan 2024 01:41:20 +0000 (02:41 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 31e3dcd674c97545817524cfeb61870d194fc462..c5a6a7608b2f0c9dc3d6d21da92d54bb3c551477 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.17 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.17
+^^^^^^^^^^^^^^
 
 - Fix multiple connection attempts when a host name resolve to multiple
   IP addresses (:ticket:`699`).
@@ -19,9 +19,6 @@ Psycopg 3.1.17 (unreleased)
   managers and other self-returning methods (see :ticket:`708`).
 
 
-Current release
----------------
-
 Psycopg 3.1.16
 ^^^^^^^^^^^^^^
 
index 40530abc0e21325f94615ad4cee6c8adb128dbdd..ec4641d02a65deedc0a465a93e6265cbff14a4db 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.17.dev1"
+__version__ = "3.1.17"
 # 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 8bdbf56fe387e0f72da75dbd9081ddbbae4172ea..76d239bde81aadc2b056f58d934672f481159ac2 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.17.dev1"
+__version__ = "3.1.17"
 
 # also change psycopg/psycopg/version.py accordingly.