From fcccbb0a84e54ddbab6f3c3e47a6dff8e72a7d06 Mon Sep 17 00:00:00 2001 From: Oleh Kuchuk Date: Sat, 17 Mar 2018 16:19:57 +0200 Subject: [PATCH] Publish 0.0.2 --- CHANGELOG.md | 16 ++++++++++++++++ aiohttp_jwt/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd25c4cb..cb7ac319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,19 @@ Permissions should be described as an array of strings inside the JWT token, or as a space-delimited OAuth 2.0 Access Token Scope string. * Introduced [JWT](https://jwt.io/) middleware for encoding/verifying your JWT token and setting property on [aiohttp.Request](https://docs.aiohttp.org/en/stable/web_reference.html#request-and-base-request) object. + +- [0.0.2] + + *Changes* + + * Refactored handling of broken provided token. + + * Revisited naming of certain properties and helpers. + + - `ONE_OF` to `match_any` + - `ALL_IN` to `match_all` + - `strategy` to `comparison` + + *Misc* + + * Improved overall code test coverage. diff --git a/aiohttp_jwt/__init__.py b/aiohttp_jwt/__init__.py index b159d952..07679c21 100644 --- a/aiohttp_jwt/__init__.py +++ b/aiohttp_jwt/__init__.py @@ -1,5 +1,5 @@ -__version__ = '0.0.1' +__version__ = '0.0.2' from .middleware import JWTMiddleware from .permissions import ( check_permissions,