Skip to content
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
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ jobs:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
permissions:
id-token: write # Required for OIDC trusted publishing
attestations: write # Required for generating attestations

strategy:
matrix:
Expand Down Expand Up @@ -118,6 +121,5 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
attestations: true
skip-existing: true
7 changes: 6 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ $ uvx --from 'libtmux' --prerelease allow python

<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->

_Upcoming changes will be written here._
### CI

#### Migrate to PyPI Trusted Publisher (#615)

PyPI publishing now uses OIDC-based Trusted Publisher instead of API tokens.
This improves security and enables package attestations for supply chain verification.

## libtmux 0.52.0 (2025-12-07)

Expand Down