#31: updated release notes to reflect upcoming 0.5.1 release

This commit is contained in:
Les Hazlewood 2015-06-26 13:38:51 -07:00
parent 9689900f6f
commit e5147b0cf9
1 changed files with 6 additions and 2 deletions

View File

@ -16,7 +16,7 @@ Maven:
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.5</version>
<version>0.5.1</version>
</dependency>
```
@ -24,7 +24,7 @@ Gradle:
```groovy
dependencies {
compile 'io.jsonwebtoken:jjwt:0.5'
compile 'io.jsonwebtoken:jjwt:0.5.1'
}
```
@ -99,6 +99,10 @@ These feature sets will be implemented in a future release when possible. Commu
## Release Notes
### 0.5.1
- Minor [bug](https://github.com/jwtk/jjwt/issues/31) fix [release](https://github.com/jwtk/jjwt/issues?q=milestone%3A0.5.1+is%3Aclosed) that ensures correct Base64 padding in Android runtimes.
### 0.5
- Android support! Android's built-in Base64 codec will be used if JJWT detects it is running in an Android environment. Other than Base64, all other parts of JJWT were already Android-compliant. Now it is fully compliant.