Skip to content

Commit 6f6f027

Browse files
authored
Release 0.13.0 (#1016)
1 parent b6f8cb8 commit 6f6f027

File tree

12 files changed

+28
-17
lines changed

12 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Release Notes
22

3+
### 0.13.0
4+
5+
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.
6+
7+
**All future JJWT major and minor versions ( `0.14.0` and later) will require Java 8 or later.**
8+
9+
This `0.13.0` minor release has only one change:
10+
11+
- The previously private `JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap)` constructor is now `public` for those that want register a claims
12+
type converter on their own specified `ObjectMapper` instance. See [Issue 914](https://github.com/jwtk/jjwt/issues/914).
13+
314
### 0.12.7
415

516
This patch release:

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:doctype: book
22
= Java JWT: JSON Web Token for Java and Android
3-
:project-version: 0.12.7
3+
:project-version: 0.13.0
44
:toc:
55
:toc-title:
66
:toc-placement!:

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

bom/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

@@ -40,34 +40,34 @@
4040
<dependency>
4141
<groupId>io.jsonwebtoken</groupId>
4242
<artifactId>jjwt</artifactId>
43-
<version>0.13.0-SNAPSHOT</version>
43+
<version>0.14.0-SNAPSHOT</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>io.jsonwebtoken</groupId>
4747
<artifactId>jjwt-api</artifactId>
48-
<version>0.13.0-SNAPSHOT</version>
48+
<version>0.14.0-SNAPSHOT</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.jsonwebtoken</groupId>
5252
<artifactId>jjwt-impl</artifactId>
53-
<version>0.13.0-SNAPSHOT</version>
53+
<version>0.14.0-SNAPSHOT</version>
5454
</dependency>
5555

5656
<!-- Extensions -->
5757
<dependency>
5858
<groupId>io.jsonwebtoken</groupId>
5959
<artifactId>jjwt-orgjson</artifactId>
60-
<version>0.13.0-SNAPSHOT</version>
60+
<version>0.14.0-SNAPSHOT</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.jsonwebtoken</groupId>
6464
<artifactId>jjwt-gson</artifactId>
65-
<version>0.13.0-SNAPSHOT</version>
65+
<version>0.14.0-SNAPSHOT</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>io.jsonwebtoken</groupId>
6969
<artifactId>jjwt-jackson</artifactId>
70-
<version>0.13.0-SNAPSHOT</version>
70+
<version>0.14.0-SNAPSHOT</version>
7171
</dependency>
7272
</dependencies>
7373
</dependencyManagement>

extensions/gson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/jackson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public JacksonDeserializer(ObjectMapper objectMapper) {
113113
* @param objectMapper the objectMapper to modify by registering a custom type-converting
114114
* {@link com.fasterxml.jackson.databind.Module Module}
115115
* @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type
116-
* @since 0.12.4
116+
* @since 0.13.0
117117
*/
118118
public JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap) {
119119
this(objectMapper);

extensions/orgjson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

impl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.jsonwebtoken</groupId>
2323
<artifactId>jjwt-root</artifactId>
24-
<version>0.13.0-SNAPSHOT</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)