summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2017-11-18 11:57:00 -0200
committerBruno Oliveira <nicoddemus@gmail.com>2017-11-18 11:57:00 -0200
commitb0f558da44ed2a72fefcee172cba57ed688ff8db (patch)
tree74a7a64466607465b6c76d5c2fc38d873c2475f1 /doc
parentf9029f11af078bb6cb4cc3b8039fa2f256e86cd1 (diff)
downloadpytest-b0f558da44ed2a72fefcee172cba57ed688ff8db.tar.gz
Add Future/Past Releases section
Diffstat (limited to 'doc')
-rw-r--r--doc/en/backwards-compatibility.rst26
1 files changed, 24 insertions, 2 deletions
diff --git a/doc/en/backwards-compatibility.rst b/doc/en/backwards-compatibility.rst
index 4daa33303..2500e85a3 100644
--- a/doc/en/backwards-compatibility.rst
+++ b/doc/en/backwards-compatibility.rst
@@ -19,8 +19,12 @@ This page lists deprecated features and when we plan to remove them. It is impor
Following our deprecation policy, we should aim to keep features for *at least* two minor versions after it was considered deprecated.
+
+Future Releases
+~~~~~~~~~~~~~~~
+
3.4
-~~~
+^^^
**Old style classes**
@@ -29,7 +33,7 @@ Issue: `#2147 <https://github.com/pytest-dev/pytest/issues/2147>`_.
Deprecated in ``3.2``.
4.0
-~~~
+^^^
**Yield tests**
@@ -74,3 +78,21 @@ Deprecated in ``3.1``.
Use ``[tool:pytest]`` instead for compatibility with other tools.
Deprecated in ``3.0``.
+
+Past Releases
+~~~~~~~~~~~~~
+
+3.0
+^^^
+
+* The following deprecated commandline options were removed:
+
+ * ``--genscript``: no longer supported;
+ * ``--no-assert``: use ``--assert=plain`` instead;
+ * ``--nomagic``: use ``--assert=plain`` instead;
+ * ``--report``: use ``-r`` instead;
+
+* Removed all ``py.test-X*`` entry points. The versioned, suffixed entry points
+ were never documented and a leftover from a pre-virtualenv era. These entry
+ points also created broken entry points in wheels, so removing them also
+ removes a source of confusion for users.