]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.8
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 16 Jan 2023 21:53:48 +0000 (22:53 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 16 Jan 2023 21:53:48 +0000 (22:53 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 532829270074c63a7ad561f9e986529a73f3c5ca..d20c993419d84666f68377bd3607d1354354bfe4 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.8 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.8
+^^^^^^^^^^^^^
 
 - Don't pollute server logs when types looked for by `TypeInfo.fetch()` 
   are not found (:ticket:`#473`).
@@ -19,9 +19,6 @@ Psycopg 3.1.8 (unreleased)
   `~Cursor.executemany()` when called with `!returning=True` (:ticket:`#479`).
 - Fix `TypeInfo.fetch()` when used with `ClientCursor` (:ticket:`#484`).
 
-Current release
----------------
-
 Psycopg 3.1.7
 ^^^^^^^^^^^^^
 
index 74226eb522d0ce8f92a5d84f7b02284775623f55..f600f16b274e4668c98de96476b18eb879c5f1ea 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.8.dev1"
+__version__ = "3.1.8"
 # 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 b2a22d98e09cbad778befc62140330536358fb06..cb0609cba1ba9193e416e6f0ca35c5e2f9d5aba1 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.8.dev1"
+__version__ = "3.1.8"
 
 # also change psycopg/psycopg/version.py accordingly.