summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2023-01-15 16:21:50 -0800
committerBernát Gábor <bgabor8@bloomberg.net>2023-01-15 16:21:50 -0800
commit6fe280aa2677f2760da0d9f59907ec27983cfd99 (patch)
treed29ac864db66c3ffef25a4a95ad51213812e1a22
parentaff1d4d8b7623de863069c1307ece6733c34d558 (diff)
downloadtox-git-6fe280aa2677f2760da0d9f59907ec27983cfd99.tar.gz
release 4.3.04.3.0
-rw-r--r--docs/changelog.rst22
-rw-r--r--docs/changelog/2732.feature.rst14
-rw-r--r--docs/changelog/2852.feature.rst1
3 files changed, 22 insertions, 15 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 42ced95c..40740b9f 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,28 @@ Release History
.. towncrier release notes start
+v4.3.0 (2023-01-15)
+-------------------
+
+Features - 4.3.0
+~~~~~~~~~~~~~~~~
+- Rewrite substitution replacement parser - by :user:`masenf`
+
+ * ``\`` acts as a proper escape for ``\`` in ini-style substitutions
+ * The resulting value of a substitution is no longer reprocessed in the context
+ of the broader string. (Prior to this change, ini-values were repeatedly re-substituted until
+ the expression no longer had modifications)
+ * Migrate and update "Substitutions" section of Configuration page from v3 docs.
+ * ```find_replace_part`` is removed from ``tox.config.loader.ini.replace``
+ * New names exported from ``tox.config.loader.ini.replace``:
+ * ``find_replace_expr``
+ * ``MatchArg``
+ * ``MatchError``
+ * ``MatchExpression``
+ * Note: the API for ``replace`` itself is unchanged. (:issue:`2732`)
+- Improved documentation for factors and test env names - by :user:`stephenfin`. (:issue:`2852`)
+
+
v4.2.8 (2023-01-11)
-------------------
diff --git a/docs/changelog/2732.feature.rst b/docs/changelog/2732.feature.rst
deleted file mode 100644
index 489edf9f..00000000
--- a/docs/changelog/2732.feature.rst
+++ /dev/null
@@ -1,14 +0,0 @@
-Rewrite substitution replacement parser - by :user:`masenf`
-
-* ``\`` acts as a proper escape for ``\`` in ini-style substitutions
-* The resulting value of a substitution is no longer reprocessed in the context
- of the broader string. (Prior to this change, ini-values were repeatedly re-substituted until
- the expression no longer had modifications)
-* Migrate and update "Substitutions" section of Configuration page from v3 docs.
-* ```find_replace_part`` is removed from ``tox.config.loader.ini.replace``
-* New names exported from ``tox.config.loader.ini.replace``:
- * ``find_replace_expr``
- * ``MatchArg``
- * ``MatchError``
- * ``MatchExpression``
- * Note: the API for ``replace`` itself is unchanged.
diff --git a/docs/changelog/2852.feature.rst b/docs/changelog/2852.feature.rst
deleted file mode 100644
index 279be66f..00000000
--- a/docs/changelog/2852.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Improved documentation for factors and test env names - by :user:`stephenfin`.