Skip to content

Commit

Permalink
Publish 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hzlmn committed Mar 17, 2018
1 parent 2eb0521 commit fcccbb0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.0.1'
__version__ = '0.0.2'
from .middleware import JWTMiddleware
from .permissions import (
check_permissions,
Expand Down

0 comments on commit fcccbb0

Please sign in to comment.