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

bump changelog to 1.4.3 #1215

Merged
merged 2 commits into from
Jan 16, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) for keeping t

<!-- towncrier release notes start -->

## [1.4.3](https://github.com/pypa/pipx/tree/1.4.3) - 2024-01-16


### Bugfixes

- Autofix python version for pylauncher, when version is provided prefixed with `python` ([#1150](https://github.com/pypa/pipx/issues/1150))
- Support building pipx wheels with setuptools-scm<7, such as on FreeBSD. ([#1208](https://github.com/pypa/pipx/issues/1208))

### Improved Documentation

- Provide useful error messages when unresolvable python version is passed ([#1150](https://github.com/pypa/pipx/issues/1150))
- Introduce towncrier for managing the changelog ([#1161](https://github.com/pypa/pipx/issues/1161))
- Add workaround for using pipx applications in shebang under macOS ([#1198](https://github.com/pypa/pipx/issues/1198))


## [1.4.2](https://github.com/pypa/pipx/tree/1.4.2)

### Features
Expand Down
1 change: 0 additions & 1 deletion changelog.d/1150.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1150.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1161.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1198.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1208.bugfix.md

This file was deleted.

4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@ def build_docs(session: nox.Session) -> None:
session.run("mkdocs", "build", "--strict", "--site-dir", *site_dir)
upcoming_changelog.unlink(missing_ok=True)
for site in site_dir:
shutil.rmtree(Path(site, "_draft_changelog"))
draft_changelog_dir = Path(site, "_draft_changelog")
if draft_changelog_dir.exists():
shutil.rmtree(draft_changelog_dir)


@nox.session(python=PYTHON_DEFAULT_VERSION)
Expand Down