Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 4.0.0 #2609

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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}"]}