From: Daniele Varrazzo Date: Thu, 15 Dec 2022 11:12:37 +0000 (+0000) Subject: chore: bump version number for 3.1.6 release X-Git-Tag: 3.1.6^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ed7b91e3577b71ff8d8ecb47cb8efdc2bbe5e22;p=thirdparty%2Fpsycopg.git chore: bump version number for 3.1.6 release --- diff --git a/docs/news.rst b/docs/news.rst index 318c34a88..5d7837193 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -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 ^^^^^^^^^^^^^ diff --git a/psycopg/psycopg/version.py b/psycopg/psycopg/version.py index 9b7c506fe..9249c598f 100644 --- a/psycopg/psycopg/version.py +++ b/psycopg/psycopg/version.py @@ -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. diff --git a/psycopg_c/psycopg_c/version.py b/psycopg_c/psycopg_c/version.py index f1b5b50d8..d07f1fe57 100644 --- a/psycopg_c/psycopg_c/version.py +++ b/psycopg_c/psycopg_c/version.py @@ -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.