From 8cb0dc9995ac95ba9092712f09872c662dfda078 Mon Sep 17 00:00:00 2001 From: solaluset <60041069+solaluset@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:36:25 +0200 Subject: [PATCH] Fix upload (#40) * add missing permissions * bump version --- .github/workflows/release.yml | 2 ++ CHANGELOG.md | 3 +++ setup.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c2b959..609e444 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,8 @@ jobs: build: name: Publish to PyPI runs-on: ubuntu-20.04 + permissions: + id-token: write steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index f7296de..c1d54e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ### Hint: use `https://github.com/solaluset/i18nice/compare/v...v` to see full code difference between versions +### v0.13.2 +- Fixed PyPI upload + ### v0.13.1 - Updated links due to account renaming - Moved to trusted publishing diff --git a/setup.py b/setup.py index 488acf8..259951c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='i18nice', - version="0.13.1", + version="0.13.2", description='Translation library for Python', long_description=long_description, long_description_content_type='text/markdown',