diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 1e9ee54..be8e546 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -3,6 +3,8 @@ on: push jobs: build: runs-on: ubuntu-latest + permissions: + id-token: write steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -13,11 +15,8 @@ jobs: - name: Publish to TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository-url: https://test.pypi.org/legacy/ skip-existing: true - name: Publish to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aa42f47..eccbc22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Unreleased ----------- +0.3.3 - February 23, 2024 +------------------------- * Add Python 3.12 support. * Drop Python 3.7 support (end-of-life was June 27, 2023). diff --git a/docs/conf.py b/docs/conf.py index 9c8275b..af82f0f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = 'agate-lookup' copyright = '2016, Christopher Groskopf' -version = '0.3.2' +version = '0.3.3' release = version # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 4e1ff08..64f9744 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='agate-lookup', - version='0.3.2', + version='0.3.3', description='agate-lookup adds remote lookup tables to agate.', long_description=long_description, long_description_content_type='text/x-rst',