]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version to release 3.0.13 3.0.13
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 10 May 2022 09:20:03 +0000 (11:20 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 10 May 2022 09:20:03 +0000 (11:20 +0200)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 038a32a4546f7e655b0b4e9ab0bef8e8166dc5be..67dc337bff85c888f3778a4a470195d5cd0e94a6 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.0.13 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.0.13
+^^^^^^^^^^^^^^
 
 - Fix `Cursor.stream()` slowness (:ticket:`#286`).
 - Fix oid for lists of integers, which might cause the server choosing
@@ -20,9 +20,6 @@ Psycopg 3.0.13 (unreleased)
   error.
 
 
-Current release
----------------
-
 Psycopg 3.0.12
 ^^^^^^^^^^^^^^
 
index d3f9b147176fba6c83f4d10f4d66dcf6cd76964b..28766b170172eb51e948bca8a3900e6d54f2d56a 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.13.dev0"
+__version__ = "3.0.13"
 # 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 89ec2b3da77b09fded581852d64690177d58bd54..ab325a6118cb6eea3434da1fb11faa8c77982157 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.13.dev0"
+__version__ = "3.0.13"
 
 # also change psycopg/psycopg/version.py accordingly.