Modified docs to reflect upcoming 0.9.1 release

This commit is contained in:
Les Hazlewood 2018-07-05 18:22:23 -04:00
parent caa2a64cd5
commit d0e9e7a2bd
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
## Release Notes ## Release Notes
### 0.9.1
This is a minor patch release that updates the Jackson dependency to 2.9.6 to address Jackson CVE-2017-17485.
### 0.9.0 ### 0.9.0
This is a minor release that includes changes to dependencies and plugins to allow for building jjwt with Java 9. This is a minor release that includes changes to dependencies and plugins to allow for building jjwt with Java 9.

View File

@ -68,7 +68,7 @@ Maven:
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId> <artifactId>jjwt</artifactId>
<version>0.9.0</version> <version>0.9.1</version>
</dependency> </dependency>
``` ```
@ -76,7 +76,7 @@ Gradle:
```groovy ```groovy
dependencies { dependencies {
compile 'io.jsonwebtoken:jjwt:0.9.0' compile 'io.jsonwebtoken:jjwt:0.9.1'
} }
``` ```