summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/src/advanced.rst2
-rw-r--r--doc/src/connection.rst4
-rw-r--r--doc/src/extensions.rst4
-rw-r--r--doc/src/extras.rst2
-rw-r--r--doc/src/usage.rst4
5 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/advanced.rst b/doc/src/advanced.rst
index 9074c2c..8d8d231 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 6beea61..624fcba 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 970d4b9..eaa27f4 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 834bd94..9a988cf 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 bea38ac..1c2a913 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|.