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 78e3246..b97d547 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Unreleased ----------- +0.1.2 - 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 3685666..94d437d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ project = 'agate-charts' copyright = '2015, Christopher Groskopf' -version = '0.1.1' +version = '0.1.2' release = version # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 3ff3951..0d21089 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='agate-charts', - version='0.1.1', + version='0.1.2', description='agate-charts adds exploratory charting support to agate.', long_description=long_description, long_description_content_type='text/x-rst',