From e52e00127e60e12dad71e50331865c7271aa86ec Mon Sep 17 00:00:00 2001 From: Varsha Menon Date: Fri, 16 Dec 2022 09:58:45 -0500 Subject: [PATCH] build: fix build errors and warnings --- .github/workflows/pypi-publish.yml | 2 +- CHANGELOG.rst | 9 +++++++++ token_utils/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index a22e9e6..8b909b6 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -24,7 +24,7 @@ jobs: run: python setup.py sdist bdist_wheel - name: Publish to PyPi - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_UPLOAD_TOKEN }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bb1d25f..2482830 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,14 @@ Unreleased * +[0.2.1] - 2022-12-16 +************************************************ + +Added +===== + +* Fixed changelog formatting error + [0.2.0] - 2022-12-15 ************************************************ @@ -24,6 +32,7 @@ Added * Added API function to sign access token * Added API function to unpack access token + [0.1.0] - 2022-08-23 ************************************************ diff --git a/token_utils/__init__.py b/token_utils/__init__.py index dbe502b..243dce2 100644 --- a/token_utils/__init__.py +++ b/token_utils/__init__.py @@ -2,6 +2,6 @@ App for the creation, signing, and decoding of various access tokens. """ -__version__ = '0.2.0' +__version__ = '0.2.1' default_app_config = 'token_utils.apps.TokenUtilsConfig' # pylint: disable=invalid-name