Skip to content

Commit efffa86

Browse files
authored
Released 0.12.5 (#918)
* Preparing for 0.12.5 release * [maven-release-plugin] prepare release 0.12.5 * [maven-release-plugin] prepare for next development iteration
1 parent a0a123e commit efffa86

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -543,18 +543,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
543543
<dependency>
544544
<groupId>io.jsonwebtoken</groupId>
545545
<artifactId>jjwt-api</artifactId>
546-
<version>0.12.4</version>
546+
<version>0.12.5</version>
547547
</dependency>
548548
<dependency>
549549
<groupId>io.jsonwebtoken</groupId>
550550
<artifactId>jjwt-impl</artifactId>
551-
<version>0.12.4</version>
551+
<version>0.12.5</version>
552552
<scope>runtime</scope>
553553
</dependency>
554554
<dependency>
555555
<groupId>io.jsonwebtoken</groupId>
556556
<artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
557-
<version>0.12.4</version>
557+
<version>0.12.5</version>
558558
<scope>runtime</scope>
559559
</dependency>
560560
<!-- Uncomment this next dependency if you are using:
@@ -577,9 +577,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
577577

578578
```groovy
579579
dependencies {
580-
implementation 'io.jsonwebtoken:jjwt-api:0.12.4'
581-
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.4'
582-
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.4' // or 'io.jsonwebtoken:jjwt-gson:0.12.4' for gson
580+
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
581+
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5'
582+
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5' // or 'io.jsonwebtoken:jjwt-gson:0.12.5' for gson
583583
/*
584584
Uncomment this next dependency if you are using:
585585
- JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
@@ -604,9 +604,9 @@ Add the dependencies to your project:
604604

605605
```groovy
606606
dependencies {
607-
api('io.jsonwebtoken:jjwt-api:0.12.4')
608-
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.4')
609-
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.4') {
607+
api('io.jsonwebtoken:jjwt-api:0.12.5')
608+
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.5')
609+
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.5') {
610610
exclude(group: 'org.json', module: 'json') //provided by Android natively
611611
}
612612
/*
@@ -3040,7 +3040,7 @@ scope which is the typical JJWT default). That is:
30403040
<dependency>
30413041
<groupId>io.jsonwebtoken</groupId>
30423042
<artifactId>jjwt-jackson</artifactId>
3043-
<version>0.12.4</version>
3043+
<version>0.12.5</version>
30443044
<scope>compile</scope> <!-- Not runtime -->
30453045
</dependency>
30463046
```
@@ -3049,7 +3049,7 @@ scope which is the typical JJWT default). That is:
30493049

30503050
```groovy
30513051
dependencies {
3052-
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.4'
3052+
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.5'
30533053
}
30543054
```
30553055

@@ -3157,7 +3157,7 @@ scope which is the typical JJWT default). That is:
31573157
<dependency>
31583158
<groupId>io.jsonwebtoken</groupId>
31593159
<artifactId>jjwt-gson</artifactId>
3160-
<version>0.12.4</version>
3160+
<version>0.12.5</version>
31613161
<scope>compile</scope> <!-- Not runtime -->
31623162
</dependency>
31633163
```
@@ -3166,7 +3166,7 @@ scope which is the typical JJWT default). That is:
31663166
31673167
```groovy
31683168
dependencies {
3169-
implementation 'io.jsonwebtoken:jjwt-gson:0.12.4'
3169+
implementation 'io.jsonwebtoken:jjwt-gson:0.12.5'
31703170
}
31713171
```
31723172

api/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

extensions/gson/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/jackson/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/orgjson/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

extensions/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

impl/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

impl/src/test/groovy/io/jsonwebtoken/impl/DefaultJwtBuilderTest.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ class DefaultJwtBuilderTest {
795795
* Asserts that if a .audience() builder is used, and its .and() method is not called, the change to the
796796
* audience is still applied when building the JWT.
797797
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
798-
* @since JJWT_RELEASE_VERSION
798+
* @since 0.12.5
799799
*/
800800
@Test
801801
void testAudienceWithoutConjunction() {
@@ -813,7 +813,7 @@ class DefaultJwtBuilderTest {
813813
* Asserts that if a .header().critical() builder is used, and its .and() method is not called, the change to the
814814
* crit collection is still applied when building the header.
815815
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
816-
* @since JJWT_RELEASE_VERSION
816+
* @since 0.12.5
817817
*/
818818
@Test
819819
void testCritWithoutConjunction() {

impl/src/test/groovy/io/jsonwebtoken/impl/DefaultJwtHeaderBuilderTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ class DefaultJwtHeaderBuilderTest {
511511
* Asserts that if a .critical() builder is used, and its .and() method is not called, the change to the
512512
* crit collection is still applied when building the header.
513513
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
514-
* @since JJWT_RELEASE_VERSION
514+
* @since 0.12.5
515515
*/
516516
@Test
517517
void testCritWithoutConjunction() {

impl/src/test/groovy/io/jsonwebtoken/impl/DefaultJwtParserBuilderTest.groovy

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class DefaultJwtParserBuilderTest {
5252
* Asserts that if a .critical() builder is used, and its .and() method is not called, the change to the
5353
* crit collection is still applied when building the parser.
5454
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
55-
* @since JJWT_RELEASE_VERSION
55+
* @since 0.12.5
5656
*/
5757
@Test
5858
void testCriticalWithoutConjunction() {
@@ -193,7 +193,7 @@ class DefaultJwtParserBuilderTest {
193193
* Asserts that if a .zip() builder is used, and its .and() method is not called, the change to the
194194
* compression algorithm collection is still applied when building the parser.
195195
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
196-
* @since JJWT_RELEASE_VERSION
196+
* @since 0.12.5
197197
*/
198198
@Test
199199
void testAddCompressionAlgorithmWithoutConjunction() {
@@ -246,7 +246,7 @@ class DefaultJwtParserBuilderTest {
246246
* Asserts that if an .enc() builder is used, and its .and() method is not called, the change to the
247247
* encryption algorithm collection is still applied when building the parser.
248248
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
249-
* @since JJWT_RELEASE_VERSION
249+
* @since 0.12.5
250250
*/
251251
@Test
252252
void testAddEncryptionAlgorithmWithoutConjunction() {
@@ -289,7 +289,7 @@ class DefaultJwtParserBuilderTest {
289289
* Asserts that if an .key() builder is used, and its .and() method is not called, the change to the
290290
* key algorithm collection is still applied when building the parser.
291291
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
292-
* @since JJWT_RELEASE_VERSION
292+
* @since 0.12.5
293293
*/
294294
@Test
295295
void testAddKeyAlgorithmWithoutConjunction() {
@@ -335,7 +335,7 @@ class DefaultJwtParserBuilderTest {
335335
* Asserts that if an .sig() builder is used, and its .and() method is not called, the change to the
336336
* signature algorithm collection is still applied when building the parser.
337337
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
338-
* @since JJWT_RELEASE_VERSION
338+
* @since 0.12.5
339339
*/
340340
@Test
341341
void testAddSignatureAlgorithmWithoutConjunction() {

impl/src/test/groovy/io/jsonwebtoken/impl/security/AbstractJwkBuilderTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class AbstractJwkBuilderTest {
246246
* Asserts that if a .operations() builder is used, and its .and() method is not called, the change to the
247247
* operations collection is still applied when building the JWK.
248248
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
249-
* @since JJWT_RELEASE_VERSION
249+
* @since 0.12.5
250250
*/
251251
@Test
252252
void testOperationsWithoutConjunction() {

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>io.jsonwebtoken</groupId>
2121
<artifactId>jjwt-root</artifactId>
22-
<version>0.12.5-SNAPSHOT</version>
22+
<version>0.12.6-SNAPSHOT</version>
2323
<name>JJWT</name>
2424
<description>JSON Web Token support for the JVM and Android</description>
2525
<packaging>pom</packaging>

tdjar/pom.xml

+1-1
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.12.5-SNAPSHOT</version>
24+
<version>0.12.6-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)