From 67d7c3d1aca05d45c9d17a96bdf720564c29de57 Mon Sep 17 00:00:00 2001 From: Bernat Gabor Date: Wed, 15 May 2019 17:32:15 +0100 Subject: [PATCH] release 3.11.0 --- docs/changelog.rst | 20 ++++++++++++++++++++ docs/changelog/1298.feature.rst | 11 ----------- 2 files changed, 20 insertions(+), 11 deletions(-) delete mode 100644 docs/changelog/1298.feature.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 2263d0d83..38f61de14 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 `_ + + 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 1375c507c..000000000 --- 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.