From 04b4649d03ff8bdc39f061e06ce75a0639320a26 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Fri, 5 Nov 2010 12:38:49 +0000 Subject: [PATCH] Updated version 2.2.3 -> 2.3 in the docs. --- doc/src/advanced.rst | 2 +- doc/src/connection.rst | 4 ++-- doc/src/extensions.rst | 4 ++-- doc/src/extras.rst | 2 +- doc/src/usage.rst | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/src/advanced.rst b/doc/src/advanced.rst index 9074c2cc..8d8d2315 100644 --- a/doc/src/advanced.rst +++ b/doc/src/advanced.rst @@ -208,7 +208,7 @@ read: Asynchronous notifications -------------------------- -.. versionchanged:: 2.2.3 +.. versionchanged:: 2.3 Added `~psycopg2.extensions.Notify` object allowing to retrieve the notification payload if connected to a PostgreSQL 9.0 server. diff --git a/doc/src/connection.rst b/doc/src/connection.rst index 6beea614..624fcba7 100644 --- a/doc/src/connection.rst +++ b/doc/src/connection.rst @@ -106,7 +106,7 @@ The ``connection`` class .. rubric:: Two-phase commit support methods - .. versionadded:: 2.2.3 + .. versionadded:: 2.3 .. seealso:: :ref:`tpc` for an introductory explanation of these methods. @@ -362,7 +362,7 @@ The ``connection`` class For other details see :ref:`async-notify`. - .. versionchanged:: 2.2.3 + .. versionchanged:: 2.3 Notifications are instances of the `!Notify` object. Previously the list was composed by 2 items tuples :samp:`({pid},{channel})` and the payload was not accessible. To keep backward compatibility, diff --git a/doc/src/extensions.rst b/doc/src/extensions.rst index 970d4b98..eaa27f48 100644 --- a/doc/src/extensions.rst +++ b/doc/src/extensions.rst @@ -109,7 +109,7 @@ functionalities defined by the |DBAPI|_. .. autoclass:: Notify(pid, channel, payload='') :members: pid, channel, payload - .. versionadded:: 2.2.3 + .. versionadded:: 2.3 .. autoclass:: Xid(format_id, gtrid, bqual) @@ -463,7 +463,7 @@ internal usage and Python code should not rely on them. to the database until the transaction is finished with `~connection.tpc_commit()` or `~connection.tpc_rollback()`. - .. versionadded:: 2.2.3 + .. versionadded:: 2.3 diff --git a/doc/src/extras.rst b/doc/src/extras.rst index 834bd942..9a988cf9 100644 --- a/doc/src/extras.rst +++ b/doc/src/extras.rst @@ -93,7 +93,7 @@ Logging cursor Hstore data type ---------------- -.. versionadded:: 2.2.3 +.. versionadded:: 2.3 The |hstore|_ data type is a key-value store embedded in PostgreSQL. It has been available for several server versions but with the release 9.0 it has diff --git a/doc/src/usage.rst b/doc/src/usage.rst index bea38ace..1c2a9132 100644 --- a/doc/src/usage.rst +++ b/doc/src/usage.rst @@ -301,7 +301,7 @@ the SQL string that would be sent to the database. .. |hstore| replace:: :sql:`hstore` .. _hstore: http://www.postgresql.org/docs/9.0/static/hstore.html - .. versionadded:: 2.2.3 + .. versionadded:: 2.3 the :sql:`hstore` adaptation. .. index:: @@ -561,7 +561,7 @@ using the |lo_import|_ and |lo_export|_ libpq functions. Two-Phase Commit protocol support --------------------------------- -.. versionadded:: 2.2.3 +.. versionadded:: 2.3 Psycopg exposes the two-phase commit features available since PostgreSQL 8.1 implementing the *two-phase commit extensions* proposed by the |DBAPI|.