]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version to release 3.0.15 3.0.15
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 14 Jun 2022 23:04:55 +0000 (01:04 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 14 Jun 2022 23:04:55 +0000 (01:04 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 6f53b88f4d726e778d282ac8767852ca03b196d8..6b48e92ae3c41dfc6b704c628489fc4e6c55e1f3 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.15 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.15
+^^^^^^^^^^^^^^
 
 - Fix wrong escaping of unprintable chars in COPY (nonetheless correctly
   interpreted by PostgreSQL).
@@ -21,9 +21,6 @@ Psycopg 3.0.15 (unreleased)
 - Distribute ``manylinux2014`` wheel packages (:ticket:`#124`).
 
 
-Current release
----------------
-
 Psycopg 3.0.14
 ^^^^^^^^^^^^^^
 
index 0b0e70d2d936e51873bf041074a1fb42c72d456a..54cd329a28c48f8f04ce4d7f2860e51e04cee068 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.15.dev0"
+__version__ = "3.0.15"
 # 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 dfed8ce2b34147d73ab7cd4a12a806a4fe5cbcc3..727b7f84b251897e66c45f447b8219547baee617 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.15.dev0"
+__version__ = "3.0.15"
 
 # also change psycopg/psycopg/version.py accordingly.