]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version to release 3.0.14
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 15 May 2022 15:46:00 +0000 (17:46 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 15 May 2022 15:46:00 +0000 (17:46 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 33f20587f0eca8a6a7f01a16243470a3d95d4483..759555b85d21815d6f46b3d8e92303847ccc2a16 100644 (file)
@@ -7,19 +7,16 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.14 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.14
+^^^^^^^^^^^^^^
 
 - Raise `DataError` dumping arrays of mixed types (:ticket:`#301`).
 - Fix handling of incorrect server results, with blank sqlstate (:ticket:`#303`).
 
 
-Current release
----------------
-
 Psycopg 3.0.13
 ^^^^^^^^^^^^^^
 
index 94570d1ab950a356bd07f6c3587e1c170558e876..5f85eb1b131c1e7946054cacf640d2d59b9cca06 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.14.dev0"
+__version__ = "3.0.14"
 # 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 86a3441b1ce124aa76cf94f0d96096c4a36c62c6..db75523920967181fca6a69a1babf545fc7d40bc 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.14.dev0"
+__version__ = "3.0.14"
 
 # also change psycopg/psycopg/version.py accordingly.