From a9a877fe311aed52b247f647494681e70b4d4619 Mon Sep 17 00:00:00 2001 From: Hernan Zalazar Date: Mon, 5 Dec 2016 19:41:43 -0300 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76d42d1..1dbe013 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [1.1.0](https://github.com/auth0/jwtdecode.android/tree/1.1.0) (2016-12-05) +[Full Changelog](https://github.com/auth0/jwtdecode.android/compare/1.0.0...1.1.0) + +**Changed** +- Keep public claims instead of removing them [\#7](https://github.com/auth0/JWTDecode.Android/pull/7) ([lbalmaceda](https://github.com/lbalmaceda)) +- Return BaseClaim if custom Claim not found [\#4](https://github.com/auth0/JWTDecode.Android/pull/4) ([lbalmaceda](https://github.com/lbalmaceda)) + ## [1.0.0](https://github.com/auth0/lock/tree/1.0.0) (2016-10-25) [Full Changelog](https://github.com/auth0/lock/tree/1.0.0) @@ -24,4 +31,4 @@ JWT jwt = new JWT(token); A `DecodeException` will raise with a detailed message if the token has: * An invalid part count. * A part not encoded as Base64 + UTF-8. -* A Header or Payload without a valid JSON format. \ No newline at end of file +* A Header or Payload without a valid JSON format. diff --git a/README.md b/README.md index e578f5b..b77f78f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Java library with focus on Android that provides Json Web Token (JWT) decoding. The library is be available both in Maven Central and JCenter. To start using it add this line to your `build.gradle` dependencies file: ```groovy -compile 'com.auth0.android:jwtdecode:1.0.0' +compile 'com.auth0.android:jwtdecode:1.1.0' ``` ## Usage