Skip to content

Commit

Permalink
chore: release version 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
toedter committed Dec 31, 2023
1 parent 60efdcc commit 1d4d27c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
image:https://github.com/toedter/spring-hateoas-jsonapi/workflows/Build/badge.svg["build", link="https://github.com/toedter/spring-hateoas-jsonapi/actions"]
image:https://sonarcloud.io/api/project_badges/measure?project=toedter_spring-hateoas-jsonapi&metric=alert_status["Quality Gate Status", link="https://sonarcloud.io/project/overview?id=toedter_spring-hateoas-jsonapi"]
image:https://codecov.io/gh/toedter/spring-hateoas-jsonapi/branch/main/graph/badge.svg["coverage", link="https://codecov.io/gh/toedter/spring-hateoas-jsonapi"]
image:https://img.shields.io/maven-central/v/com.toedter/spring-hateoas-jsonapi?color=green["maven-central", link="https://central.sonatype.com/artifact/com.toedter/spring-hateoas-jsonapi/2.0.6/versions"]
image:https://img.shields.io/maven-central/v/com.toedter/spring-hateoas-jsonapi?color=green["maven-central", link="https://central.sonatype.com/artifact/com.toedter/spring-hateoas-jsonapi/2.0.7/versions"]
image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["Apache 2.0", link="https://opensource.org/licenses/Apache-2.0"]

= JSON:API for Spring HATEOAS
Expand All @@ -18,8 +18,8 @@ you find more examples at https://github.com/toedter/spring-hateoas-jsonapi-exam

Here you find the documentation for the releases and the current snapshot:
|===
| 2.0.6 | https://toedter.github.io/spring-hateoas-jsonapi/2.0.6/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/2.0.6/api/[API Documentation]
| 2.0.7-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation]
| 2.0.7 | https://toedter.github.io/spring-hateoas-jsonapi/2.0.7/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/2.0.7/api/[API Documentation]
| 2.0.8-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation]
| 1.6.0 | https://toedter.github.io/spring-hateoas-jsonapi/1.6.0/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.6.0/api/[API Documentation]
|===

Expand All @@ -38,17 +38,17 @@ To enable the JSON:API media type you just need to add this module as a dependen

Gradle:
[source]
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.7'

Maven:
[source,xml]
<dependency>
<groupId>com.toedter</groupId>
<artifactId>spring-hateoas-jsonapi</artifactId>
<version>2.0.6</version>
<version>2.0.7</version>
</dependency>

The latest published snapshot version is `2.0.7-SNAPSHOT`.
The latest published snapshot version is `2.0.8-SNAPSHOT`.
If you want to try it out,
please make sure to add `https://oss.sonatype.org/content/repositories/snapshots/`
as a repository to your Maven or Gradle configuration.
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.toedter'
version = '2.0.7-SNAPSHOT'
version = '2.0.7'
sourceCompatibility = '1.17'

repositories {
Expand All @@ -27,7 +27,7 @@ dependencies {
implementation 'com.io-informatics.oss:jackson-jsonld:0.1.1'

// if you want to use the released version, use
// implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
// implementation 'com.toedter:spring-hateoas-jsonapi:2.0.7'
implementation project(':lib')

testImplementation('org.springframework.boot:spring-boot-starter-test') {
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group = 'com.toedter'
version = '2.0.7-SNAPSHOT'
version = '2.0.7'
sourceCompatibility = '1.17'

repositories {
Expand Down
6 changes: 3 additions & 3 deletions lib/src/main/asciidoc/setup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To enable the JSON:API media type you just need to add this module as a dependen
[source,groovy,indent=0,role="primary"]
.Gradle
----
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.7'
----

[source,xml,indent=0,role="secondary"]
Expand All @@ -15,9 +15,9 @@ implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
<dependency>
<groupId>com.toedter</groupId>
<artifactId>spring-hateoas-jsonapi</artifactId>
<version>2.0.6</version>
<version>2.0.7</version>
</dependency>
----

The latest published snapshot version is `2.0.7-SNAPSHOT`. The 2.x.x stream is based on Spring Boot 3.x.x.
The latest published snapshot version is `2.0.8-SNAPSHOT`. The 2.x.x stream is based on Spring Boot 3.x.x.

0 comments on commit 1d4d27c

Please sign in to comment.