]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump to version 3.0.12 3.0.12
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 29 Apr 2022 22:38:49 +0000 (00:38 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 29 Apr 2022 22:38:49 +0000 (00:38 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 8beb68a55111ede7f63d62298a1f149ab710e0ce..cee4a13295f3903b4e701f6c2d6db83afe2f4d37 100644 (file)
@@ -7,20 +7,17 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.12 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.12
+^^^^^^^^^^^^^^
 
 - Allow `bytearray`/`memoryview` data too as `Copy.write()` input
   (:ticket:`#254`).
 - Fix dumping `~enum.IntEnum` in text mode, Python implementation.
 
 
-Current release
----------------
-
 Psycopg 3.0.11
 ^^^^^^^^^^^^^^
 
index fe4a5fdd48b2c6722e1f1f5ac37146d48fd393e4..f4077d9e2fb918ed84b4927959702b2fdff01049 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.12.dev0"
+__version__ = "3.0.12"
 # 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 394da2eb41369d3907d1f8f5fa617a9f28e137b3..4d5d2bab111b926c139b2062a443612982c497ca 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.12.dev0"
+__version__ = "3.0.12"
 
 # also change psycopg/psycopg/version.py accordingly.