diff --git a/README.adoc b/README.adoc index d9c93627..3ae1be4c 100644 --- a/README.adoc +++ b/README.adoc @@ -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 @@ -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] |=== @@ -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] com.toedter spring-hateoas-jsonapi - 2.0.6 + 2.0.7 -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. diff --git a/example/build.gradle b/example/build.gradle index eca1b9c4..54702dd5 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -6,7 +6,7 @@ plugins { } group = 'com.toedter' -version = '2.0.7-SNAPSHOT' +version = '2.0.7' sourceCompatibility = '1.17' repositories { @@ -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') { diff --git a/lib/build.gradle b/lib/build.gradle index a436cf98..eff7f297 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -16,7 +16,7 @@ plugins { } group = 'com.toedter' -version = '2.0.7-SNAPSHOT' +version = '2.0.7' sourceCompatibility = '1.17' repositories { diff --git a/lib/src/main/asciidoc/setup.adoc b/lib/src/main/asciidoc/setup.adoc index 5651405a..cf7a0855 100644 --- a/lib/src/main/asciidoc/setup.adoc +++ b/lib/src/main/asciidoc/setup.adoc @@ -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"] @@ -15,9 +15,9 @@ implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6' com.toedter spring-hateoas-jsonapi - 2.0.6 + 2.0.7 ---- -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.