]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump to version number 3.1.3
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 4 Oct 2022 16:43:27 +0000 (17:43 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 4 Oct 2022 16:43:27 +0000 (17:43 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 63a020f414579ec6b6dd98c1c5fe2979d148908a..0d14c1774fce63e2f2890bd2591307ff2545c39c 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.3 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.3
+^^^^^^^^^^^^^
 
 - Restore the state of the connection if `Cursor.stream()` is terminated
   prematurely (:ticket:`#382`).
@@ -21,9 +21,6 @@ Psycopg 3.1.3 (unreleased)
   (:ticket:`#399`).
 
 
-Current release
----------------
-
 Psycopg 3.1.2
 ^^^^^^^^^^^^^
 
index f12f1eb500239553bf077f1e93c00d14ba9323d8..d52fb5ccf306b7d6af8d11f7cd6d9e1c503f581a 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.3.dev0"
+__version__ = "3.1.3"
 # 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 fd6c392478e92afd25ec857f53231c19e8c098be..b1bf0babbc9685d71567f50cb41d5072792cddff 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.3.dev0"
+__version__ = "3.1.3"
 
 # also change psycopg/psycopg/version.py accordingly.