Add version{added,changed} for lock timeout support.
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 0ce6c63..31f1b0e 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -164,6 +164,7 @@
    Specifiying a timeout greater than this value will raise an
    :exc:`OverflowError`.
 
+   .. versionadded:: 3.2
 
 Detailed interfaces for the objects are documented below.
 
@@ -382,6 +383,8 @@
    The return value is ``True`` if the lock is acquired successfully,
    ``False`` if not (for example if the *timeout* expired).
 
+   .. versionchanged:: 3.2
+      The *timeout* parameter is new.
 
 .. method:: Lock.release()
 
@@ -439,6 +442,9 @@
    and as long as the lock cannot be acquired.  Return true if the lock has
    been acquired, false if the timeout has elapsed.
 
+   .. versionchanged:: 3.2
+      The *timeout* parameter is new.
+
 
 .. method:: RLock.release()