summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorRob DiMarco <rdimarco@google.com>2015-07-22 11:31:08 -0700
committerRob DiMarco <rdimarco@google.com>2015-07-22 11:31:08 -0700
commitfa8a06e96526eb7c0eeaa47e4f39be59d21f16e1 (patch)
tree6811b2b55e2711aaab752c06847b92e5e8bc3858 /README.md
parent37a6b73b739f5890275042fcba952a036fc41e36 (diff)
downloadphp-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.zip
php-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.tar.gz
php-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.tar.bz2
Update package.xml and README.md for 3.0.0 releasev3.0.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index b891c2c..7f1b026 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,18 @@ $decoded = JWT::decode($jwt, $key, array('HS256'));
Changelog
---------
+#### 3.0.0 / 2015-07-22
+- Minimum PHP version updated from `5.2.0` to `5.3.0`.
+- Add `\Firebase\JWT` namespace. See
+[#59](https://github.com/firebase/php-jwt/pull/59) for details. Thanks to
+[@Dashron](https://github.com/Dashron)!
+- Require a non-empty key to decode and verify a JWT. See
+[#60](https://github.com/firebase/php-jwt/pull/60) for details. Thanks to
+[@sjones608](https://github.com/sjones608)!
+- Cleaner documentation blocks in the code. See
+[#62](https://github.com/firebase/php-jwt/pull/62) for details. Thanks to
+[@johanderuijter](https://github.com/johanderuijter)!
+
#### 2.2.0 / 2015-06-22
- Add support for adding custom, optional JWT headers to `JWT::encode()`. See
[#53](https://github.com/firebase/php-jwt/pull/53/files) for details. Thanks to