]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.19 3.1.19
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 10 May 2024 00:01:14 +0000 (02:01 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 10 May 2024 00:01:14 +0000 (02:01 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index f7ceced69f58bf3962caec39fb0033733e227be1..af13ede4a0ad8d136dffcd3c2373c3c497915c7e 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.19 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.19
+^^^^^^^^^^^^^^
 
 - Fix unaligned access undefined behaviour in C extension (:ticket:`#734`).
 - Fix excessive stripping of error message prefixes (:ticket:`#752`).
@@ -20,9 +20,6 @@ Psycopg 3.1.19 (unreleased)
 - Improve COPY performance on macOS (:ticket:`#745`).
 
 
-Current release
----------------
-
 Psycopg 3.1.18
 ^^^^^^^^^^^^^^
 
index bc6ffbc15bf98ba9c726591f9777013272c74670..fa429ac83e0750392703b63315d9308cef6e63d7 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.19.dev1"
+__version__ = "3.1.19"
 # 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 0435af8ea2fe575f447481edbc3d1f454e6e8cb1..8ad06431b86034f6f346220a6dba3feca7ae327a 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.19.dev1"
+__version__ = "3.1.19"
 
 # also change psycopg/psycopg/version.py accordingly.