]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.11
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 22 Sep 2023 22:08:01 +0000 (00:08 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 23 Sep 2023 02:02:48 +0000 (04:02 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 978cf3860a3f15ff22761fd3fbcb3af1e12cbeff..a88d9b3c449d3c55bfc3dcc618bf55e317432d79 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.11 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.11
+^^^^^^^^^^^^^^
 
 - Avoid caching the parsing results of large queries to avoid excessive memory
   usage (:ticket:`#628`).
@@ -24,9 +24,6 @@ Psycopg 3.1.11 (unreleased)
 - Fix missing pipeline fetch in async `~AsyncCursor.scroll()`.
 
 
-Current release
----------------
-
 Psycopg 3.1.10
 ^^^^^^^^^^^^^^
 
index 3876b35494a4edea94398cf93f21e7bd04abb326..e72dc48f0bf3633df7fbcdd5a515486d9649a52f 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.11.dev1"
+__version__ = "3.1.11"
 # 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 0b2367d37bff6f22547f84a5bfde45fea3e7ff83..00fa5b7f8a0c13190027b625c7f2a870d1466be3 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.11.dev1"
+__version__ = "3.1.11"
 
 # also change psycopg/psycopg/version.py accordingly.