]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
chore: bump version number to release 3.1 3.1
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 29 Aug 2022 23:01:14 +0000 (00:01 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 29 Aug 2022 23:01:14 +0000 (00:01 +0100)
docs/news.rst
psycopg/psycopg/version.py
psycopg_c/psycopg_c/version.py

index 786647ad410a3ec9241c3af9b29f1fdf0254d7de..100ff7e72b4b8e891bc48fac940f4333ec7bdbb9 100644 (file)
@@ -7,11 +7,11 @@
 ``psycopg`` release notes
 =========================
 
-Future releases
+Current release
 ---------------
 
-Psycopg 3.1 (unreleased)
-^^^^^^^^^^^^^^^^^^^^^^^^
+Psycopg 3.1
+^^^^^^^^^^^
 
 - Add :ref:`Pipeline mode <pipeline-mode>` (:ticket:`#74`).
 - Add :ref:`client-side-binding-cursors` (:ticket:`#101`).
@@ -37,9 +37,6 @@ Psycopg 3.1 (unreleased)
 - Drop support for Python 3.6.
 
 
-Current release
----------------
-
 Psycopg 3.0.17
 ^^^^^^^^^^^^^^
 
index 8a71535323650f7bc3432ff82217cb89ad8f919f..66da5ad58edae383293b729bf16f47cf74dc6fae 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.1b1"
+__version__ = "3.1"
 # 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 16daad920b81e2821a5b9d9769d7439d7290821a..59fe81622962a9d811c87b0c288947b7d21ada56 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.1b1"
+__version__ = "3.1"
 
 # also change psycopg/psycopg/version.py accordingly.