]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number to 3.0.11 3.0.11
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 29 Mar 2022 21:06:52 +0000 (23:06 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 29 Mar 2022 21:09:50 +0000 (23:09 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 55015ad19efa6b6f3d385dd098c0f32731af133b..90a347f3f20a889f04147e77546afe9829a5fe56 100644 (file)
@@ -7,7 +7,7 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
 Psycopg 3.0.11
@@ -18,9 +18,6 @@ Psycopg 3.0.11
 - Fix error propagation from COPY worker thread (mentioned in :ticket:`#255`).
 
 
-Current release
----------------
-
 Psycopg 3.0.10
 ^^^^^^^^^^^^^^
 
index 8b4f85d8232c67e9c530f5065d9d53532ddeee24..4c10c1c48068b717ae64e4789a14018ac983b777 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.11.dev0"
+__version__ = "3.0.11"
 # 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 ae382214745b8714e90ad7ac5243957928ee13cb..1956ef8cc96248ac5a9d787d6062d593bb37114e 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.11.dev0"
+__version__ = "3.0.11"
 
 # also change psycopg/psycopg/version.py accordingly.