summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2019-05-15 17:32:15 +0100
committerBernat Gabor <bgabor8@bloomberg.net>2019-05-15 17:32:15 +0100
commit67d7c3d1aca05d45c9d17a96bdf720564c29de57 (patch)
treeca3e9c3c0a6add939eb96dbe094c56ed9cda20c0
parentdd6619346306181c7d8313a86afa4ad7be6f2178 (diff)
downloadtox-git-67d7c3d1aca05d45c9d17a96bdf720564c29de57.tar.gz
release 3.11.03.11.0
-rw-r--r--docs/changelog.rst20
-rw-r--r--docs/changelog/1298.feature.rst11
2 files changed, 20 insertions, 11 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 2263d0d8..38f61de1 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -11,6 +11,26 @@ with advance notice in the **Deprecations** section of releases.
.. towncrier release notes start
+v3.11.0 (2019-05-15)
+--------------------
+
+Features
+^^^^^^^^
+
+- ``--showconfig`` overhaul:
+
+ - now fully generated via the config parser, so anyone can load it by using the built-in python config parser
+ - the ``tox`` section contains all configuration data from config
+ - the ``tox`` section contains a ``host_python`` key detailing the path of the host python
+ - the ``tox:version`` section contains the versions of all packages tox depends on with their version
+ - passing ``-l`` now allows only listing default target envs
+ - allows showing config for a given set of tox environments only via the ``-e`` cli flag or the ``TOXENV`` environment
+ variable, in this case the ``tox`` and ``tox:version`` section is only shown if at least one verbosity flag is passed
+
+ this should help inspecting the options.
+ `#1298 <https://github.com/tox-dev/tox/issues/1298>`_
+
+
v3.10.0 (2019-05-13)
--------------------
diff --git a/docs/changelog/1298.feature.rst b/docs/changelog/1298.feature.rst
deleted file mode 100644
index 1375c507..00000000
--- a/docs/changelog/1298.feature.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-``--showconfig`` overhaul:
-
-- now fully generated via the config parser, so anyone can load it by using the built-in python config parser
-- the ``tox`` section contains all configuration data from config
-- the ``tox`` section contains a ``host_python`` key detailing the path of the host python
-- the ``tox:version`` section contains the versions of all packages tox depends on with their version
-- passing ``-l`` now allows only listing default target envs
-- allows showing config for a given set of tox environments only via the ``-e`` cli flag or the ``TOXENV`` environment
- variable, in this case the ``tox`` and ``tox:version`` section is only shown if at least one verbosity flag is passed
-
-this should help inspecting the options.