Skip to content

Commit e719536

Browse files
author
Landon Gilbert-Bland
committed
Bump to 4.0.2
Properly include requirements.txt in manifest
1 parent 43f29b6 commit e719536

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include LICENSE README.md dev-requirements.txt tox.ini
1+
include LICENSE README.md requirements.txt tox.ini
22
recursive-include tests *.py

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Flask-JWT-Extended not only adds support for using JSON Web Tokens (JWT) to Flas
55
but also many helpful (and **optional**) features built in to make working with JSON Web Tokens
66
easier. These include:
77

8-
* Support for adding custom claims to JSON Web Tokens
8+
* Adding custom claims to JSON Web Tokens
99
* 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`).
1111
* [Refresh tokens](https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/)
1212
* First class support for fresh tokens for making sensitive changes.
1313
* Token revoking/blocklisting
@@ -30,7 +30,7 @@ Come chat with the community or ask questions at https://discord.gg/EJBsbFd
3030
Before making any changes, make sure to install the development requirements
3131
and setup the git hooks which will automatically lint and format your changes.
3232
```bash
33-
pip install -r dev-requirements.txt
33+
pip install -r requirements.txt
3434
pre-commit install
3535
```
3636

flask_jwt_extended/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from .view_decorators import jwt_required
1919
from .view_decorators import verify_jwt_in_request
2020

21-
__version__ = "4.0.1"
21+
__version__ = "4.0.2"

0 commit comments

Comments
 (0)