]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number to 3.0.10
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 3 Mar 2022 01:53:41 +0000 (01:53 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 3 Mar 2022 01:56:59 +0000 (01:56 +0000)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 1e0e64bacaf06044805998ea5dc97ef76dd04cdc..bf9da0e155e959175e88c884564562e61ccbdacc 100644 (file)
@@ -7,21 +7,18 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.10 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.10
+^^^^^^^^^^^^^^
 
-- Leave the connection working after interrupting a query with Ctrl-C
+- Leave the connection in working state after interrupting a query with Ctrl-C
   (currently only for sync connections, :ticket:`#231`).
 - Fix `Cursor.description` after a COPY ... TO STDOUT operation
   (:ticket:`#235`).
 
 
-Current release
----------------
-
 Psycopg 3.0.9
 ^^^^^^^^^^^^^
 
index d41a1a9c8e41ebe9a972ceacde9968190c6e67ab..e95307a6b35ba10d890b50d15f23a31da7c762d5 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.0.10.dev0"
+__version__ = "3.0.10"
 # 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 d63eb588cef9b64494d6843bf324c15b26df1366..60a768da5ef90c8244d9078a9a85ded2b71bd8aa 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.0.10.dev0"
+__version__ = "3.0.10"
 
 # also change psycopg/psycopg/version.py accordingly.