]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.9 3.1.9
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 2 May 2023 10:56:24 +0000 (12:56 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 2 May 2023 10:56:24 +0000 (12:56 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index f5492ebebaf5e20442b61580caf2954e3ca1095b..d213bfcacfb1f76a5255f02b5e0f8507b7396d7a 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.9 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.9
+^^^^^^^^^^^^^
 
 - Fix `TypeInfo.fetch()` using a connection in `!sql_ascii` encoding
   (:ticket:`#503`).
@@ -26,9 +26,6 @@ Psycopg 3.1.9 (unreleased)
 - Fix dumping recursive composite types (:ticket:`#547`).
 
 
-Current release
----------------
-
 Psycopg 3.1.8
 ^^^^^^^^^^^^^
 
index a8e068b7904aaec59f928f34af09ed80b62dfd40..4f223eef779a10b559218f1f8fce6a8c3a012e61 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.9.dev1"
+__version__ = "3.1.9"
 # 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 25ed8421de3effd4207aee7fe1d420cd8cd14e25..0c30bebf30c6da78c472e08caa2d20f463c9e007 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.9.dev1"
+__version__ = "3.1.9"
 
 # also change psycopg/psycopg/version.py accordingly.