Skip to content

Commit

Permalink
Bump to 4.0.2
Browse files Browse the repository at this point in the history
Properly include requirements.txt in manifest
  • Loading branch information
Landon Gilbert-Bland committed Feb 13, 2021
1 parent 43f29b6 commit e719536
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include LICENSE README.md dev-requirements.txt tox.ini
include LICENSE README.md requirements.txt tox.ini
recursive-include tests *.py
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Flask-JWT-Extended not only adds support for using JSON Web Tokens (JWT) to Flas
but also many helpful (and **optional**) features built in to make working with JSON Web Tokens
easier. These include:

* Support for adding custom claims to JSON Web Tokens
* Adding custom claims to JSON Web Tokens
* Custom claims validation on received tokens
* Creating tokens from complex objects or complex object from received tokens (current_user)
* Automatic user loading (`current_user`).
* [Refresh tokens](https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/)
* First class support for fresh tokens for making sensitive changes.
* Token revoking/blocklisting
Expand All @@ -30,7 +30,7 @@ Come chat with the community or ask questions at https://discord.gg/EJBsbFd
Before making any changes, make sure to install the development requirements
and setup the git hooks which will automatically lint and format your changes.
```bash
pip install -r dev-requirements.txt
pip install -r requirements.txt
pre-commit install
```

Expand Down
2 changes: 1 addition & 1 deletion flask_jwt_extended/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from .view_decorators import jwt_required
from .view_decorators import verify_jwt_in_request

__version__ = "4.0.1"
__version__ = "4.0.2"

0 comments on commit e719536

Please sign in to comment.