Skip to content

Commit c63ee4a

Browse files
committed
release 4.0.0
Signed-off-by: Bernát Gábor <[email protected]>
1 parent fc4d938 commit c63ee4a

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

docs/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Release History
44

55
.. towncrier release notes start
66
7+
v4.0.0 (2022-12-07)
8+
-------------------
9+
10+
Bugfixes - 4.0.0
11+
~~~~~~~~~~~~~~~~
12+
- The temporary folder within the tox environment was named ``.temp`` instead of ``.tmp`` - by :user:`gaborbernat`. (:issue:`2608`)
13+
14+
Improved Documentation - 4.0.0
15+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16+
- Enumerate breaking changes of tox 4 in the FAQ, and also list major new improvements - by :user:`gaborbernat`. (:issue:`2587`)
17+
- Document in the FAQ that tox 4 will raise a warning when finding conflicting environment names - by :user:`gaborbernat`. (:issue:`2602`)
18+
19+
720
v4.0.0rc4 (2022-12-06)
821
----------------------
922

docs/changelog/2587.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2602.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2608.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/test_provision.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,5 @@ def test_provision_no_recreate_json(tox_project: ToxProjectCreator) -> None:
189189
assert msg in result.out
190190
with (project.path / "out.json").open() as file_handler:
191191
requires = json.load(file_handler)
192-
# __version__ could be something like 4.0.0rc1.dev1+? so we still need to sanitize it to keep the base and add "a0"
193-
version = f"{Version(__version__).base_version}a0"
192+
version = Version(__version__).base_version
194193
assert requires == {"minversion": version, "requires": ["p", f"tox>={version}"]}

0 commit comments

Comments
 (0)