Skip to content

Commit 5b1d3ee

Browse files
authored
Merge pull request #14 from edx/varshamenon4/fix-changelog
build: fix build errors and warnings
2 parents deb9fc5 + e52e001 commit 5b1d3ee

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/pypi-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: python setup.py sdist bdist_wheel
2525

2626
- name: Publish to PyPi
27-
uses: pypa/gh-action-pypi-publish@master
27+
uses: pypa/gh-action-pypi-publish@release/v1
2828
with:
2929
user: __token__
3030
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ Unreleased
1616

1717
*
1818

19+
[0.2.1] - 2022-12-16
20+
************************************************
21+
22+
Added
23+
=====
24+
25+
* Fixed changelog formatting error
26+
1927
[0.2.0] - 2022-12-15
2028
************************************************
2129

@@ -24,6 +32,7 @@ Added
2432

2533
* Added API function to sign access token
2634
* Added API function to unpack access token
35+
2736
[0.1.0] - 2022-08-23
2837
************************************************
2938

token_utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
App for the creation, signing, and decoding of various access tokens.
33
"""
44

5-
__version__ = '0.2.0'
5+
__version__ = '0.2.1'
66

77
default_app_config = 'token_utils.apps.TokenUtilsConfig' # pylint: disable=invalid-name

0 commit comments

Comments
 (0)