Skip to content

Commit

Permalink
Merge pull request #2609 from tox-dev/release-4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Dec 7, 2022
2 parents fc4d938 + c63ee4a commit 60d4e25
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ Release History

.. towncrier release notes start
v4.0.0 (2022-12-07)
-------------------

Bugfixes - 4.0.0
~~~~~~~~~~~~~~~~
- The temporary folder within the tox environment was named ``.temp`` instead of ``.tmp`` - by :user:`gaborbernat`. (:issue:`2608`)

Improved Documentation - 4.0.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Enumerate breaking changes of tox 4 in the FAQ, and also list major new improvements - by :user:`gaborbernat`. (:issue:`2587`)
- Document in the FAQ that tox 4 will raise a warning when finding conflicting environment names - by :user:`gaborbernat`. (:issue:`2602`)


v4.0.0rc4 (2022-12-06)
----------------------

Expand Down
1 change: 0 additions & 1 deletion docs/changelog/2587.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/2602.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/2608.bugfix.rst

This file was deleted.

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

0 comments on commit 60d4e25

Please sign in to comment.