]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number for 3.1.6 release 3.1.6
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 15 Dec 2022 11:12:37 +0000 (11:12 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 15 Dec 2022 11:12:37 +0000 (11:12 +0000)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 318c34a88b25833f42d078a3417f17a6652cb5cc..5d7837193562a9a674aaafefb1db5f2b8c97ee5a 100644 (file)
@@ -7,14 +7,14 @@
 ``psycopg`` release notes
 =========================
 
-Psycopg 3.1.6 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Current release
+---------------
 
-- Fix `cursor.copy()` with cursors using row factories (:ticket:`#460`).
+Psycopg 3.1.6
+^^^^^^^^^^^^^
 
+- Fix `cursor.copy()` with cursors using row factories (:ticket:`#460`).
 
-Current release
----------------
 
 Psycopg 3.1.5
 ^^^^^^^^^^^^^
index 9b7c506feb50f6008acb3e23c4dd0b98bcabc890..9249c598f2b9e1d491c922d6ebd23817c7f4a477 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.6.dev0"
+__version__ = "3.1.6"
 # 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 f1b5b50d887b5fc7ad31d45d1a225b9a596b7552..d07f1fe57e9116e564e7b276c35a9f74f4f7e448 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.6.dev0"
+__version__ = "3.1.6"
 
 # also change psycopg/psycopg/version.py accordingly.