From: Daniele Varrazzo Date: Sat, 8 Jan 2022 18:57:04 +0000 (+0100) Subject: Bump version numbers for release X-Git-Tag: pool-3.1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4561487e4ffe96715a2d0890ca316bb187975c7;p=thirdparty%2Fpsycopg.git Bump version numbers for release --- diff --git a/docs/news.rst b/docs/news.rst index d1b4c7ea4..2be27824d 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -7,8 +7,11 @@ ``psycopg`` release notes ========================= +Future releases +--------------- + Psycopg 3.1 (unreleased) ------------------------- +^^^^^^^^^^^^^^^^^^^^^^^^ - Add :ref:`Two-Phase Commit ` support (:ticket:`#72`). - Return results from all queries run through `~Cursor.executemany()`; each @@ -20,8 +23,8 @@ Psycopg 3.1 (unreleased) Current release --------------- -Psycopg 3.0.8 (unreleased) -^^^^^^^^^^^^^^^^^^^^^^^^^^ +Psycopg 3.0.8 +^^^^^^^^^^^^^ - Decode connection errors in the ``client_encoding`` specified in the connection string, if available (:ticket:`#194`). diff --git a/docs/news_pool.rst b/docs/news_pool.rst index 7cfed1d91..0ac87770f 100644 --- a/docs/news_pool.rst +++ b/docs/news_pool.rst @@ -17,17 +17,16 @@ psycopg_pool 3.1.0 (unreleased) (:ticket:`#151`). -psycopg_pool 3.0.3 (unreleased) -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -- Throw `!ValueError` if `ConnectionPool` `!min_size` and `!max_size` are both - set to 0 (instead of hanging). -- Throw `PoolClosed` calling `~ConnectionPool.wait()` on a closed pool. - - Current release --------------- +psycopg_pool 3.0.3 +^^^^^^^^^^^^^^^^^^ + +- Raise `!ValueError` if `ConnectionPool` `!min_size` and `!max_size` are both + set to 0 (instead of hanging). +- Raise `PoolClosed` calling `~ConnectionPool.wait()` on a closed pool. + psycopg_pool 3.0.2 ^^^^^^^^^^^^^^^^^^ diff --git a/psycopg_pool/psycopg_pool/version.py b/psycopg_pool/psycopg_pool/version.py index 34dd5bd8e..514daaf68 100644 --- a/psycopg_pool/psycopg_pool/version.py +++ b/psycopg_pool/psycopg_pool/version.py @@ -6,4 +6,7 @@ psycopg pool version file. # Use a versioning scheme as defined in # https://www.python.org/dev/peps/pep-0440/ +# STOP AND READ! if you change: __version__ = "3.1.dev0" +# also change: +# - `docs/news_pool.rst` to declare this version current or unreleased