]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.20 maint-3.1 3.1.20
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 29 Jun 2024 18:20:26 +0000 (20:20 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 29 Jun 2024 18:20:26 +0000 (20:20 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index db2c2bf6c3775fb270553ca3dbf7981110df3f28..336918700e7e9a2658fa9fd73b0e88547ac45cfe 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.20 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.20
+^^^^^^^^^^^^^^
 
 - Use the simple query protocol to execute COMMIT/ROLLBACK when possible.
   This should make easier to connect the PgBouncer admin database
@@ -21,9 +21,6 @@ Psycopg 3.1.20 (unreleased)
 - Bundle binary package with OpenSSL 3.3.x (:ticket:`#847`).
 
 
-Current release
----------------
-
 Psycopg 3.1.19
 ^^^^^^^^^^^^^^
 
index 7c6907d33a4779ec6017965ed906aef49912bb99..466ddcb65d99c7c22524b8462c902d2cc399a4a7 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.20.dev1"
+__version__ = "3.1.20"
 # 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 7f72985270fdd6718d2c47807e2006a061cda497..4421eaf30bd0b15a0d7580cfb86e515cd817256d 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.20.dev1"
+__version__ = "3.1.20"
 
 # also change psycopg/psycopg/version.py accordingly.