]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump psycopg package version to 3.1.10 3.1.10
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 4 Aug 2023 14:55:12 +0000 (15:55 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 5 Aug 2023 09:20:26 +0000 (10:20 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 5a5bfc6c3f0b94a2f7177e0bb82ff8282b4dcdd9..9bb2ddc83ad02d4b0d46de49e325d7ed84134930 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.10 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.10
+^^^^^^^^^^^^^^
 
 - Allow JSON dumpers to dump `bytes` directly instead of `str`,
   for better compatibility with libraries like orjson and msgspec
@@ -31,9 +31,6 @@ Psycopg 3.1.10 (unreleased)
 - Add support for Python 3.12.
 
 
-Current release
----------------
-
 Psycopg 3.1.9
 ^^^^^^^^^^^^^
 
index 7d92f7df94bf0dbab522d6df6141c29651546dd0..edc7f462fd634edfb9be2fe11e038dfe09a78606 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.10.dev1"
+__version__ = "3.1.10"
 # 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 2fbb9f6cf82b49729011e58754ef24977e74fa5b..a3a5f3abc139162fa2031b5460880e0676351082 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.10.dev1"
+__version__ = "3.1.10"
 
 # also change psycopg/psycopg/version.py accordingly.