Skip to content

Commit a4e3225

Browse files
committedOct 24, 2018
Publish v0.2.0
1 parent d749566 commit a4e3225

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed
 

‎CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11

2+
- [0.2.0]
3+
4+
*Additions*
5+
6+
* 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!
7+
8+
*Misc*
9+
10+
* Cleanup a bit project structure
11+
212
- [0.1.1]
313

414
*Fixes*
515

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

818

919
- [0.1.0]

‎aiohttp_jwt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
__version__ = '0.1.1'
2+
__version__ = '0.2.0'
33

44
from .middleware import JWTMiddleware
55
from .permissions import (

‎setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def read(*parts):
4040
version=get_version(),
4141
description='aiohttp middleware for working with JWT',
4242
long_description=read('README.md'),
43+
long_description_content_type='text/markdown',
4344
url='https://github.com/hzlmn/aiohttp-jwt',
4445
author='Oleh Kuchuk',
4546
author_email='kuchuklehjs@gmail.com',

0 commit comments

Comments
 (0)
Please sign in to comment.