summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/changelog.rst24
-rw-r--r--docs/changelog/1603.misc.rst1
-rw-r--r--docs/changelog/1605.feature.rst8
3 files changed, 24 insertions, 9 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 4f9caef0..b8d530e2 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -11,6 +11,30 @@ with advance notice in the **Deprecations** section of releases.
.. towncrier release notes start
+v3.16.0 (2020-06-26)
+--------------------
+
+Features
+^^^^^^^^
+
+- Allow skipping the package and installation step when passing the ``--skip-pkg-install``. This should be used in pair with the ``--notest``, so you can separate environment setup and test run:
+
+ .. code-block:: console
+
+ tox -e py --notest
+ tox -e py --skip-pkg-install
+
+ by :user:`gaborbernat`.
+ `#1605 <https://github.com/tox-dev/tox/issues/1605>`_
+
+
+Miscellaneous
+^^^^^^^^^^^^^
+
+- Improve config parsing performance by precompiling commonly used regular expressions - by :user:`brettlangdon`
+ `#1603 <https://github.com/tox-dev/tox/issues/1603>`_
+
+
v3.15.2 (2020-06-06)
--------------------
diff --git a/docs/changelog/1603.misc.rst b/docs/changelog/1603.misc.rst
deleted file mode 100644
index 56ab17c9..00000000
--- a/docs/changelog/1603.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Improve config parsing performance by precompiling commonly used regular expressions - by :user:`brettlangdon`
diff --git a/docs/changelog/1605.feature.rst b/docs/changelog/1605.feature.rst
deleted file mode 100644
index 32f601da..00000000
--- a/docs/changelog/1605.feature.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Allow skipping the package and installation step when passing the ``--skip-pkg-install``. This should be used in pair with the ``--notest``, so you can separate environment setup and test run:
-
- .. code-block:: console
-
- tox -e py --notest
- tox -e py --skip-pkg-install
-
-by :user:`gaborbernat`.