diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8018cb..e0e689ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/aiohttp_jwt/__init__.py b/aiohttp_jwt/__init__.py index 84cf9efb..b97b666d 100644 --- a/aiohttp_jwt/__init__.py +++ b/aiohttp_jwt/__init__.py @@ -1,5 +1,5 @@ -__version__ = '0.1.1' +__version__ = '0.2.0' from .middleware import JWTMiddleware from .permissions import ( diff --git a/setup.py b/setup.py index 5e370d86..8dee6563 100644 --- a/setup.py +++ b/setup.py @@ -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',