Skip to content

Commit

Permalink
bump changelog to 1.4.3 (#1215)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitznik authored Jan 16, 2024
1 parent 2cf78d2 commit f272651
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
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

0 comments on commit f272651

Please sign in to comment.