]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.18 3.1.18
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 4 Feb 2024 17:42:54 +0000 (17:42 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 4 Feb 2024 17:42:54 +0000 (17:42 +0000)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 83650766de9bb21b59bd8066a508464f9fc8d08d..31a5f4cdeb0c387c1c6b89204a0b996d600c65d7 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.18 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.18
+^^^^^^^^^^^^^^
 
 - Fix possible deadlock on pipeline exit (:ticket:`#685`).
 - Fix overflow loading large intervals in C module (:ticket:`#719`).
@@ -21,9 +21,6 @@ Psycopg 3.1.18 (unreleased)
 .. __: https://github.com/python/cpython/issues/65821
 
 
-Current release
----------------
-
 Psycopg 3.1.17
 ^^^^^^^^^^^^^^
 
index 12fa628dd7e2103a8d456061e6828665585695b1..84ef3dedd43a842284c72c32b96e3283bc52b526 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.18.dev1"
+__version__ = "3.1.18"
 # 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 4534741714f584db1450fc675cf487f8ae98cf68..ed46589c06c40be98a6799397a5d36db25a94fc9 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.18.dev1"
+__version__ = "3.1.18"
 
 # also change psycopg/psycopg/version.py accordingly.