Skip to content

Commit 3f2697f

Browse files
authored
Release 0.12.7 (#1012)
- Ensured JJWT_RELEASE_VERSION placeholders reference 0.12.7 - Updated README.adoc project version to 0.12.7 to prepare for release - Updated Maven Central URLs per Sonatype's latest documentation - [maven-release-plugin] prepare release 0.12.7 - [maven-release-plugin] prepare for next development iteration
1 parent efed1cf commit 3f2697f

22 files changed

+41
-41
lines changed

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.6
3+
:project-version: 0.12.7
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.12.7-SNAPSHOT</version>
24+
<version>0.12.8-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

api/src/main/java/io/jsonwebtoken/Jwts.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,19 +1002,19 @@ private ZIP() {
10021002
}
10031003
}
10041004

1005-
// @since JJWT_RELEASE_VERSION
1005+
// @since 0.12.7
10061006
private static final Supplier<JwtBuilder> JWT_BUILDER_SUPPLIER =
10071007
Classes.newInstance("io.jsonwebtoken.impl.DefaultJwtBuilder$Supplier");
10081008

1009-
// @since JJWT_RELEASE_VERSION
1009+
// @since 0.12.7
10101010
private static final Supplier<JwtParserBuilder> JWT_PARSER_BUILDER_SUPPLIER =
10111011
Classes.newInstance("io.jsonwebtoken.impl.DefaultJwtParserBuilder$Supplier");
10121012

1013-
// @since JJWT_RELEASE_VERSION
1013+
// @since 0.12.7
10141014
private static final Supplier<HeaderBuilder> HEADER_BUILDER_SUPPLIER =
10151015
Classes.newInstance("io.jsonwebtoken.impl.DefaultJwtHeaderBuilder$Supplier");
10161016

1017-
// @since JJWT_RELEASE_VERSION
1017+
// @since 0.12.7
10181018
private static final Supplier<ClaimsBuilder> CLAIMS_BUILDER_SUPPLIER =
10191019
Classes.newInstance("io.jsonwebtoken.impl.DefaultClaimsBuilder$Supplier");
10201020

api/src/main/java/io/jsonwebtoken/security/Jwks.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ private Jwks() {
4444

4545
private static final String JWKS_BRIDGE_FQCN = "io.jsonwebtoken.impl.security.JwksBridge";
4646

47-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
47+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
4848
private static final Supplier<DynamicJwkBuilder<?, ?>> BUILDER_SUPPLIER =
4949
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultDynamicJwkBuilder$Supplier");
5050

51-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
51+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
5252
private static final Supplier<JwkParserBuilder> PARSER_BUILDER_SUPPLIER =
5353
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultJwkParserBuilder$Supplier");
5454

55-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
55+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
5656
private static final Supplier<JwkSetBuilder> SET_BUILDER_SUPPLIER =
5757
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultJwkSetBuilder$Supplier");
5858

59-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
59+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
6060
private static final Supplier<JwkSetParserBuilder> SET_PARSER_BUILDER_SUPPLIER =
6161
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultJwkSetParserBuilder$Supplier");
6262

@@ -383,11 +383,11 @@ public static final class OP {
383383
private static final String IMPL_CLASSNAME = "io.jsonwebtoken.impl.security.StandardKeyOperations";
384384
private static final Registry<String, KeyOperation> REGISTRY = Classes.newInstance(IMPL_CLASSNAME);
385385

386-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
386+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
387387
private static final Supplier<KeyOperationBuilder> BUILDER_SUPPLIER =
388388
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultKeyOperationBuilder$Supplier");
389389

390-
// @since JJWT_RELEASE_VERSION per https://github.com/jwtk/jjwt/issues/988
390+
// @since 0.12.7 per https://github.com/jwtk/jjwt/issues/988
391391
private static final Supplier<KeyOperationPolicyBuilder> POLICY_BUILDER_SUPPLIER =
392392
Classes.newInstance("io.jsonwebtoken.impl.security.DefaultKeyOperationPolicyBuilder$Supplier");
393393

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.12.7-SNAPSHOT</version>
24+
<version>0.12.8-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.12.7-SNAPSHOT</version>
43+
<version>0.12.8-SNAPSHOT</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>io.jsonwebtoken</groupId>
4747
<artifactId>jjwt-api</artifactId>
48-
<version>0.12.7-SNAPSHOT</version>
48+
<version>0.12.8-SNAPSHOT</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.jsonwebtoken</groupId>
5252
<artifactId>jjwt-impl</artifactId>
53-
<version>0.12.7-SNAPSHOT</version>
53+
<version>0.12.8-SNAPSHOT</version>
5454
</dependency>
5555

5656
<!-- Extensions -->
5757
<dependency>
5858
<groupId>io.jsonwebtoken</groupId>
5959
<artifactId>jjwt-orgjson</artifactId>
60-
<version>0.12.7-SNAPSHOT</version>
60+
<version>0.12.8-SNAPSHOT</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.jsonwebtoken</groupId>
6464
<artifactId>jjwt-gson</artifactId>
65-
<version>0.12.7-SNAPSHOT</version>
65+
<version>0.12.8-SNAPSHOT</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>io.jsonwebtoken</groupId>
6969
<artifactId>jjwt-jackson</artifactId>
70-
<version>0.12.7-SNAPSHOT</version>
70+
<version>0.12.8-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.12.7-SNAPSHOT</version>
24+
<version>0.12.8-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.12.7-SNAPSHOT</version>
24+
<version>0.12.8-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

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

0 commit comments

Comments
 (0)