]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump to version number 3.1.2 3.1.2
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 19 Sep 2022 11:08:22 +0000 (12:08 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 19 Sep 2022 11:08:22 +0000 (12:08 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 675b6d79d0b71c7db5c3a9170092639c81a4c4df..e703093782e60f2bf978ed7daecc3e085336cd93 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1.2 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1.2
+^^^^^^^^^^^^^
 
 - Fix handling of certain invalid time zones causing problems on Windows
   (:ticket:`#371`).
@@ -21,9 +21,6 @@ Psycopg 3.1.2 (unreleased)
 - Fix queries with repeated named parameters in `ClientCursor` (:ticket:`#378`).
 
 
-Current release
----------------
-
 Psycopg 3.1.1
 ^^^^^^^^^^^^^
 
index 77f1cc5d879db9787d3a39e376d69e42ff4b5720..2e1642bff464673d289d9de147baf52115e7b05a 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.2.dev0"
+__version__ = "3.1.2"
 # 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 8319ecd4424e1e1ada894b66fc16e7fd64ffd5f9..6c016d9860d3ace083f1160b96b37d2e46dc905e 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.2.dev0"
+__version__ = "3.1.2"
 
 # also change psycopg/psycopg/version.py accordingly.