Skip to content

Commit deb9fc5

Browse files
authored
Merge pull request #13 from edx/varshamenon4/update-package-name
build: update package name for release
2 parents ba7f8b3 + 9b8ceb4 commit deb9fc5

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.rst

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

1717
*
1818

19+
[0.2.0] - 2022-12-15
20+
************************************************
21+
22+
Added
23+
=====
24+
25+
* Added API function to sign access token
26+
* Added API function to unpack access token
1927
[0.1.0] - 2022-08-23
2028
************************************************
2129

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def is_requirement(line):
101101
CHANGELOG = open(os.path.join(os.path.dirname(__file__), 'CHANGELOG.rst'), encoding="utf8").read()
102102

103103
setup(
104-
name='token-utils',
104+
name='edx-token-utils',
105105
version=VERSION,
106106
description="""App for the creation, signing, and decoding of various access tokens""",
107107
long_description=README + '\n\n' + CHANGELOG,

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.1.0'
5+
__version__ = '0.2.0'
66

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

0 commit comments

Comments
 (0)