diff --git a/CHANGELOG.md b/CHANGELOG.md index d9a65500..6503af80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## Release Notes +### 0.13.0 + +This is the last minor JJWT release branch that will support Java 7. Any necessary emergency bug fixes will be fixed in subsequent `0.13.x` patch releases, but all new development, including Java 8 compatible changes, will be in the next minor (`0.14.0`) release. + +**All future JJWT major and minor versions ( `0.14.0` and later) will require Java 8 or later.** + +This `0.13.0` minor release has only one change: + + - The previously private `JacksonDeserializer(ObjectMapper objectMapper, Map> claimTypeMap)` constructor is now `public` for those that want register a claims + type converter on their own specified `ObjectMapper` instance. See [Issue 914](https://github.com/jwtk/jjwt/issues/914). + ### 0.12.7 This patch release: diff --git a/README.adoc b/README.adoc index f3e87e6b..6c8c0d61 100644 --- a/README.adoc +++ b/README.adoc @@ -1,6 +1,6 @@ :doctype: book = Java JWT: JSON Web Token for Java and Android -:project-version: 0.12.7 +:project-version: 0.13.0 :toc: :toc-title: :toc-placement!: diff --git a/api/pom.xml b/api/pom.xml index 2fbfc759..acf78c57 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../pom.xml diff --git a/bom/pom.xml b/bom/pom.xml index 416f0ff7..fa0a8158 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../pom.xml @@ -40,34 +40,34 @@ io.jsonwebtoken jjwt - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT io.jsonwebtoken jjwt-api - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT io.jsonwebtoken jjwt-impl - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT io.jsonwebtoken jjwt-orgjson - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT io.jsonwebtoken jjwt-gson - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT io.jsonwebtoken jjwt-jackson - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT diff --git a/extensions/gson/pom.xml b/extensions/gson/pom.xml index 17e9ae97..fa69704c 100644 --- a/extensions/gson/pom.xml +++ b/extensions/gson/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../../pom.xml diff --git a/extensions/jackson/pom.xml b/extensions/jackson/pom.xml index 50316a7b..59c43250 100644 --- a/extensions/jackson/pom.xml +++ b/extensions/jackson/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../../pom.xml diff --git a/extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java b/extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java index 63cc3761..5736134f 100644 --- a/extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java +++ b/extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java @@ -113,7 +113,7 @@ public class JacksonDeserializer extends AbstractDeserializer { * @param objectMapper the objectMapper to modify by registering a custom type-converting * {@link com.fasterxml.jackson.databind.Module Module} * @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type - * @since 0.12.4 + * @since 0.13.0 */ public JacksonDeserializer(ObjectMapper objectMapper, Map> claimTypeMap) { this(objectMapper); diff --git a/extensions/orgjson/pom.xml b/extensions/orgjson/pom.xml index 6f75194b..70841f9e 100644 --- a/extensions/orgjson/pom.xml +++ b/extensions/orgjson/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../../pom.xml diff --git a/extensions/pom.xml b/extensions/pom.xml index 935e8b31..24c3bb75 100644 --- a/extensions/pom.xml +++ b/extensions/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../pom.xml diff --git a/impl/pom.xml b/impl/pom.xml index f8a498b3..68eb142a 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index c6b7837c..b0c887bc 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT JJWT JSON Web Token support for the JVM and Android pom diff --git a/tdjar/pom.xml b/tdjar/pom.xml index 97279ea6..4fc0acba 100644 --- a/tdjar/pom.xml +++ b/tdjar/pom.xml @@ -21,7 +21,7 @@ io.jsonwebtoken jjwt-root - 0.13.0-SNAPSHOT + 0.14.0-SNAPSHOT ../pom.xml