From e719536625448b8b54a4b4a73e5a3a121e619535 Mon Sep 17 00:00:00 2001 From: Landon Gilbert-Bland Date: Sat, 13 Feb 2021 14:02:27 -0700 Subject: [PATCH] Bump to 4.0.2 Properly include requirements.txt in manifest --- MANIFEST.in | 2 +- README.md | 6 +++--- flask_jwt_extended/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index c43f0287..bc476683 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/README.md b/README.md index 1ba72e67..4a126ebd 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` diff --git a/flask_jwt_extended/__init__.py b/flask_jwt_extended/__init__.py index 8beea4c0..80f90331 100644 --- a/flask_jwt_extended/__init__.py +++ b/flask_jwt_extended/__init__.py @@ -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"