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

index 1ef62e165da80ba890d51124a597fc60401bcb67..f26d4007bf4c6abd473ef3f80f8c2e0f6cf3bfba 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.5 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.5
+^^^^^^^^^^^^^
 
 - Fix array loading slowness compared to psycopg2 (:ticket:`#359`).
 - Improve performance around network communication (:ticket:`#414`).
@@ -24,9 +24,6 @@ Psycopg 3.1.5 (unreleased)
 - Improve performance using :ref:`row-factories` (:ticket:`#457`).
 
 
-Current release
----------------
-
 Psycopg 3.1.4
 ^^^^^^^^^^^^^
 
index 718dde123286607a7d970f93eb4822f3b9796fde..7532b61abce197abadd6f4200fd025577f8f28d8 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.5.dev0"
+__version__ = "3.1.5"
 # 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 3b48afb6caf41d2ac05c26c527f913d7e94f9f18..d6fe55fcbc31abb0245b5b552d6311511e0eb482 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.5.dev0"
+__version__ = "3.1.5"
 
 # also change psycopg/psycopg/version.py accordingly.