]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.13 3.1.13
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 17 Nov 2023 15:36:57 +0000 (16:36 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 17 Nov 2023 15:36:57 +0000 (16:36 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index e036378978d62a622fbac58eb0211c4314c5d034..3824a73f7f37c949eb3fe78556cddaec9d16121b 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.13 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.13
+^^^^^^^^^^^^^^
 
 - Raise `DataError` instead of whatever internal failure trying to dump a
   `~datetime.time` object with with a `!tzinfo` specified as
@@ -24,9 +24,6 @@ Psycopg 3.1.13 (unreleased)
   (:ticket:`#679`).
 
 
-Current release
----------------
-
 Psycopg 3.1.12
 ^^^^^^^^^^^^^^
 
index ebdba740cd5387b3d2ce61746eac793980660305..4bd038e2d0cd778a8ba61bca0ca9460d4e4afef6 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.13.dev1"
+__version__ = "3.1.13"
 # 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 408cfe77c1899bbaffeef6d84be97f20d6010a09..5f1410c22512c4586f2325f3c9f8f5f094d5dbc6 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.13.dev1"
+__version__ = "3.1.13"
 
 # also change psycopg/psycopg/version.py accordingly.