]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number to 3.0.9 3.0.9
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 19 Feb 2022 17:48:24 +0000 (18:48 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 19 Feb 2022 17:48:24 +0000 (18:48 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 790c3a3ffeeccbeb11e3231223efb217b856f539..631c0e8f3c7ac1f57e60d170e069b7bfd3994436 100644 (file)
@@ -7,7 +7,7 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
 Psycopg 3.0.9
@@ -18,9 +18,6 @@ Psycopg 3.0.9
   zones (:ticket:`#223`).
 
 
-Current release
----------------
-
 Psycopg 3.0.8
 ^^^^^^^^^^^^^
 
@@ -93,6 +90,7 @@ Psycopg 3.0.2
   slice, now raising a `TypeError` (:ticket:`#129`).
 - Fix disable cursors methods after close() (:ticket:`#125`).
 
+
 Psycopg 3.0.1
 ^^^^^^^^^^^^^
 
index 185d5ae7a7b92971d7b967e07775665d01462990..c77610a5cf2efaaf2f55f64a2dfb570fe0f9dd5e 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.9.dev0"
+__version__ = "3.0.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 6cfce7a0f7a1fb905d18c67232e5c43cff2ec028..ddaf0272d5eadd11174c7595a1999cbc55d02137 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.9.dev0"
+__version__ = "3.0.9"
 
 # also change psycopg/psycopg/version.py accordingly.