File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- include LICENSE README.md dev- requirements.txt tox.ini
1
+ include LICENSE README.md requirements.txt tox.ini
2
2
recursive-include tests *.py
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ Flask-JWT-Extended not only adds support for using JSON Web Tokens (JWT) to Flas
5
5
but also many helpful (and ** optional** ) features built in to make working with JSON Web Tokens
6
6
easier. These include:
7
7
8
- * Support for adding custom claims to JSON Web Tokens
8
+ * Adding custom claims to JSON Web Tokens
9
9
* Custom claims validation on received tokens
10
- * Creating tokens from complex objects or complex object from received tokens ( current_user)
10
+ * Automatic user loading ( ` current_user ` ).
11
11
* [ Refresh tokens] ( https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/ )
12
12
* First class support for fresh tokens for making sensitive changes.
13
13
* Token revoking/blocklisting
@@ -30,7 +30,7 @@ Come chat with the community or ask questions at https://discord.gg/EJBsbFd
30
30
Before making any changes, make sure to install the development requirements
31
31
and setup the git hooks which will automatically lint and format your changes.
32
32
``` bash
33
- pip install -r dev- requirements.txt
33
+ pip install -r requirements.txt
34
34
pre-commit install
35
35
```
36
36
Original file line number Diff line number Diff line change 18
18
from .view_decorators import jwt_required
19
19
from .view_decorators import verify_jwt_in_request
20
20
21
- __version__ = "4.0.1 "
21
+ __version__ = "4.0.2 "
You can’t perform that action at this time.
0 commit comments