]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number to 3.0.16
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 28 Jul 2022 10:08:06 +0000 (12:08 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 28 Jul 2022 10:08:06 +0000 (12:08 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 28c2d9acfb9a11c28c0380af74aba53293a42f0f..53fb07dfff23c6535b6ea2478dce44570dbdf047 100644 (file)
@@ -7,18 +7,15 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.16 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.16
+^^^^^^^^^^^^^^
 
 - Fix missing `~Cursor.rowcount` after SHOW (:ticket:`#343`).
 
 
-Current release
----------------
-
 Psycopg 3.0.15
 ^^^^^^^^^^^^^^
 
index 77e94545c5b5bfdabea4bce9049701b9e2be5d3d..9066c4727f5fd414b55293fb64947ca0d521166f 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.0.16.dev0"
+__version__ = "3.0.16"
 # 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 1456f324c96bdf5b3add3a5d36652f08dd6bc0e9..1b1157eee523400fb22eddf070195bb22df022f1 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.0.16.dev0"
+__version__ = "3.0.16"
 
 # also change psycopg/psycopg/version.py accordingly.