Skip to content

Commit 948313a

Browse files
committed
bump version to 2.1.0
1 parent 0571657 commit 948313a

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

FUNDING.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
github: [contactjavas]
2-
patreon: bagus
32
custom: ["https://www.paypal.me/bagusjavas"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,9 @@ add_filter(
681681
## Credits
682682

683683
- [PHP-JWT from firebase](https://github.com/firebase/php-jwt)
684-
- [JWT Authentication for WP REST API](https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/). My _JWT-Auth_ plugin was a "copy-then-modify" of _JWT Authentication for WP REST API_ plugin.
684+
- [JWT Authentication for WP REST API](https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/). This _JWT-Auth_ plugin was a "copy-then-modify" of _JWT Authentication for WP REST API_ plugin.
685685
- [Devices utility by pesseba](https://github.com/pesseba)
686+
- The [awesome maintainers](https://github.com/usefulteam/jwt-auth/collaborators) and [contributors](https://github.com/usefulteam/jwt-auth/graphs/contributors)
686687

687688
## License
688689

@@ -704,6 +705,5 @@ You can help me to keep this plugin alive and continue to maintain it by:
704705
Then **let's be fair** and feel free to donate me via:
705706

706707
- [PayPal](https://www.paypal.me/bagusjavas)
707-
- [Patreon](https://www.patreon.com/bagus)
708708

709709
Thank You!

jwt-auth.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: JWT Auth
44
* Plugin URI: https://github.com/usefulteam/jwt-auth
55
* Description: WordPress JWT Authentication.
6-
* Version: 2.0.0
6+
* Version: 2.1.0
77
* Author: Useful Team
88
* Author URI: https://usefulteam.com
99
* License: GPL-3.0
@@ -19,7 +19,7 @@
1919
// Helper constants.
2020
define( 'JWT_AUTH_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
2121
define( 'JWT_AUTH_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
22-
define( 'JWT_AUTH_PLUGIN_VERSION', '2.0.0' );
22+
define( 'JWT_AUTH_PLUGIN_VERSION', '2.1.0' );
2323

2424
// Require composer.
2525
require __DIR__ . '/vendor/autoload.php';

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ add_filter(
622622
[PHP-JWT from firebase](https://github.com/firebase/php-jwt)
623623
[JWT Authentication for WP REST API](https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/)
624624
[Devices utility by pesseba](https://github.com/pesseba)
625+
The [awesome maintainers](https://github.com/usefulteam/jwt-auth/collaborators) and [contributors](https://github.com/usefulteam/jwt-auth/graphs/contributors)
625626

626627
== Installation ==
627628

@@ -699,14 +700,16 @@ You can visit the GitHub repository [here](https://github.com/usefulteam/jwt-aut
699700

700701
You can help this plugin stay alive and maintained by giving **5 Stars** Rating/ Review or donating me via:
701702
- [PayPal](https://paypal.me/bagusjavas)
702-
- [Patreon](https://www.patreon.com/bagus)
703703

704704
== Screenshots ==
705705
1. Success response when trying to generate token
706706
2. Error response when trying to generate token
707707
3. Other error responses
708708

709709
== Changelog ==
710+
= 2.1.0 =
711+
- It's possible now to whitelist an endpoint with specific method (GET/POST). See [PR #47](https://github.com/usefulteam/jwt-auth/pull/47)
712+
710713
= 2.0.0 =
711714
- Breaking change: rename `jwt_auth_valid_token_extra` filter to `jwt_auth_extra_token_check`. Please check if you use this filter.
712715
- Breaking bugfix: the actual http statusCode didn't follow the response statusCode. Now the actual http statusCode follows the response statusCode.

0 commit comments

Comments
 (0)