Skip to content

Commit

Permalink
Released 0.12.5 (#918)
Browse files Browse the repository at this point in the history
* Preparing for 0.12.5 release
* [maven-release-plugin] prepare release 0.12.5
* [maven-release-plugin] prepare for next development iteration
  • Loading branch information
lhazlewood committed Feb 1, 2024
1 parent a0a123e commit efffa86
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
26 changes: 13 additions & 13 deletions README.md
Expand Up @@ -543,18 +543,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.12.4</version>
<version>0.12.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.12.4</version>
<version>0.12.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
<version>0.12.4</version>
<version>0.12.5</version>
<scope>runtime</scope>
</dependency>
<!-- Uncomment this next dependency if you are using:
Expand All @@ -577,9 +577,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll

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

```groovy
dependencies {
api('io.jsonwebtoken:jjwt-api:0.12.4')
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.4')
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.4') {
api('io.jsonwebtoken:jjwt-api:0.12.5')
runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.5')
runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.5') {
exclude(group: 'org.json', module: 'json') //provided by Android natively
}
/*
Expand Down Expand Up @@ -3040,7 +3040,7 @@ scope which is the typical JJWT default). That is:
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.12.4</version>
<version>0.12.5</version>
<scope>compile</scope> <!-- Not runtime -->
</dependency>
```
Expand All @@ -3049,7 +3049,7 @@ scope which is the typical JJWT default). That is:

```groovy
dependencies {
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.4'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.5'
}
```

Expand Down Expand Up @@ -3157,7 +3157,7 @@ scope which is the typical JJWT default). That is:
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-gson</artifactId>
<version>0.12.4</version>
<version>0.12.5</version>
<scope>compile</scope> <!-- Not runtime -->
</dependency>
```
Expand All @@ -3166,7 +3166,7 @@ scope which is the typical JJWT default). That is:
```groovy
dependencies {
implementation 'io.jsonwebtoken:jjwt-gson:0.12.4'
implementation 'io.jsonwebtoken:jjwt-gson:0.12.5'
}
```
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extensions/gson/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extensions/jackson/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extensions/orgjson/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion extensions/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion impl/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Expand Up @@ -795,7 +795,7 @@ class DefaultJwtBuilderTest {
* Asserts that if a .audience() builder is used, and its .and() method is not called, the change to the
* audience is still applied when building the JWT.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testAudienceWithoutConjunction() {
Expand All @@ -813,7 +813,7 @@ class DefaultJwtBuilderTest {
* Asserts that if a .header().critical() builder is used, and its .and() method is not called, the change to the
* crit collection is still applied when building the header.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testCritWithoutConjunction() {
Expand Down
Expand Up @@ -511,7 +511,7 @@ class DefaultJwtHeaderBuilderTest {
* Asserts that if a .critical() builder is used, and its .and() method is not called, the change to the
* crit collection is still applied when building the header.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testCritWithoutConjunction() {
Expand Down
Expand Up @@ -52,7 +52,7 @@ class DefaultJwtParserBuilderTest {
* Asserts that if a .critical() builder is used, and its .and() method is not called, the change to the
* crit collection is still applied when building the parser.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testCriticalWithoutConjunction() {
Expand Down Expand Up @@ -193,7 +193,7 @@ class DefaultJwtParserBuilderTest {
* Asserts that if a .zip() builder is used, and its .and() method is not called, the change to the
* compression algorithm collection is still applied when building the parser.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testAddCompressionAlgorithmWithoutConjunction() {
Expand Down Expand Up @@ -246,7 +246,7 @@ class DefaultJwtParserBuilderTest {
* Asserts that if an .enc() builder is used, and its .and() method is not called, the change to the
* encryption algorithm collection is still applied when building the parser.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testAddEncryptionAlgorithmWithoutConjunction() {
Expand Down Expand Up @@ -289,7 +289,7 @@ class DefaultJwtParserBuilderTest {
* Asserts that if an .key() builder is used, and its .and() method is not called, the change to the
* key algorithm collection is still applied when building the parser.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testAddKeyAlgorithmWithoutConjunction() {
Expand Down Expand Up @@ -335,7 +335,7 @@ class DefaultJwtParserBuilderTest {
* Asserts that if an .sig() builder is used, and its .and() method is not called, the change to the
* signature algorithm collection is still applied when building the parser.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testAddSignatureAlgorithmWithoutConjunction() {
Expand Down
Expand Up @@ -246,7 +246,7 @@ class AbstractJwkBuilderTest {
* Asserts that if a .operations() builder is used, and its .and() method is not called, the change to the
* operations collection is still applied when building the JWK.
* @see <a href="https://github.com/jwtk/jjwt/issues/916">JJWT Issue 916</a>
* @since JJWT_RELEASE_VERSION
* @since 0.12.5
*/
@Test
void testOperationsWithoutConjunction() {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -19,7 +19,7 @@

<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<name>JJWT</name>
<description>JSON Web Token support for the JVM and Android</description>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tdjar/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-root</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit efffa86

Please sign in to comment.