Skip to content

Commit

Permalink
Publish v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hzlmn committed Oct 24, 2018
1 parent d749566 commit a4e3225
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@

- [0.2.0]

*Additions*

* Added support for [class based views](https://docs.aiohttp.org/en/stable/web_quickstart.html#class-based-views) in decorators https://github.com/hzlmn/aiohttp-jwt/issues/52. Thanks @citijk for the report!

*Misc*

* Cleanup a bit project structure

- [0.1.1]

*Fixes*

* Fixed issue with non bearer token scheme https://github.com/hzlmn/aiohttp-jwt/issues/14 .Thanks @vikitikitavi
* Fixed issue with non bearer token scheme https://github.com/hzlmn/aiohttp-jwt/issues/14. Thanks @vikitikitavi


- [0.1.0]
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_jwt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '0.1.1'
__version__ = '0.2.0'

from .middleware import JWTMiddleware
from .permissions import (
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def read(*parts):
version=get_version(),
description='aiohttp middleware for working with JWT',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/hzlmn/aiohttp-jwt',
author='Oleh Kuchuk',
author_email='kuchuklehjs@gmail.com',
Expand Down

0 comments on commit a4e3225

Please sign in to comment.