From: Daniele Varrazzo Date: Tue, 13 Dec 2022 14:20:37 +0000 (+0000) Subject: chore: bump version number for 3.1.5 release X-Git-Tag: 3.1.5^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d496c394769d03ccfc3c8c0c0b1b68f8823024a;p=thirdparty%2Fpsycopg.git chore: bump version number for 3.1.5 release --- diff --git a/docs/news.rst b/docs/news.rst index 1ef62e165..f26d4007b 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -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 ^^^^^^^^^^^^^ diff --git a/psycopg/psycopg/version.py b/psycopg/psycopg/version.py index 718dde123..7532b61ab 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.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. diff --git a/psycopg_c/psycopg_c/version.py b/psycopg_c/psycopg_c/version.py index 3b48afb6c..d6fe55fcb 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.5.dev0" +__version__ = "3.1.5" # also change psycopg/psycopg/version.py accordingly.