summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorRob DiMarco <rdimarco@google.com>2016-07-17 21:51:16 -0700
committerRob DiMarco <rdimarco@google.com>2016-07-17 21:51:16 -0700
commitdccf163dc8ed7ed6a00afc06c51ee5186a428d35 (patch)
tree584ecc533e5ea7c7c1cc446272008c13775ae688 /README.md
parentd42564707c695e96f1208d9af52d8f599db044c6 (diff)
downloadphp-jwt-dccf163dc8ed7ed6a00afc06c51ee5186a428d35.zip
php-jwt-dccf163dc8ed7ed6a00afc06c51ee5186a428d35.tar.gz
php-jwt-dccf163dc8ed7ed6a00afc06c51ee5186a428d35.tar.bz2
Update README for v4.0.0v4.0.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5d53658..d4589b1 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,12 @@ $decoded = JWT::decode($jwt, $key, array('HS256'));
Changelog
---------
+#### 4.0.0 / 2016-07-17
+- Add support for late static binding. See [#88](https://github.com/firebase/php-jwt/pull/88) for details. Thanks to [@chappy84](https://github.com/chappy84)!
+- Use static `$timestamp` instead of `time()` to improve unit testing. See [#93](https://github.com/firebase/php-jwt/pull/93) for details. Thanks to [@josephmcdermott](https://github.com/josephmcdermott)!
+- Fixes to exceptions classes. See [#81](https://github.com/firebase/php-jwt/pull/81) for details. Thanks to [@Maks3w](https://github.com/Maks3w)!
+- Fixes to PHPDoc. See [#76](https://github.com/firebase/php-jwt/pull/76) for details. Thanks to [@akeeman](https://github.com/akeeman)!
+
#### 3.0.0 / 2015-07-22
- Minimum PHP version updated from `5.2.0` to `5.3.0`.
- Add `\Firebase\JWT` namespace. See