From 1af6f552f37bc6b24902e84da95318130e4404ac Mon Sep 17 00:00:00 2001 From: Kai Toedter Date: Mon, 18 Jul 2022 09:06:52 +0200 Subject: [PATCH] chore: release version 1.5.1 --- README.adoc | 10 +++++----- example/build.gradle | 4 ++-- lib/build.gradle | 2 +- lib/src/main/asciidoc/setup.adoc | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.adoc b/README.adoc index 7ab28c31..00b3deca 100644 --- a/README.adoc +++ b/README.adoc @@ -18,8 +18,8 @@ you find more examples at https://github.com/toedter/spring-hateoas-jsonapi-exam Here you find the documentation for the latest release and the current snapshot: |=== -| 1.5.0 | https://toedter.github.io/spring-hateoas-jsonapi/1.5.0/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.5.0/api/[API Documentation] -| 1.5.1-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation] +| 1.5.1 | https://toedter.github.io/spring-hateoas-jsonapi/1.5.1/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.5.1/api/[API Documentation] +| 1.5.2-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation] |=== == Integration with your Backends @@ -31,14 +31,14 @@ Maven: com.toedter spring-hateoas-jsonapi - 1.5.0 + 1.5.1 Gradle: [source] -implementation 'com.toedter:spring-hateoas-jsonapi:1.5.0' +implementation 'com.toedter:spring-hateoas-jsonapi:1.5.1' -The latest published snapshot version is `1.5.1-SNAPSHOT`. +The latest published snapshot version is `1.5.2-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 d4d161d9..978b3865 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -6,7 +6,7 @@ plugins { } group = 'com.toedter' -version = '1.5.1-SNAPSHOT' +version = '1.5.1' sourceCompatibility = '1.8' repositories { @@ -24,7 +24,7 @@ dependencies { implementation 'javax.validation:validation-api:2.0.1.Final' // if you want to use the released version, use - // implementation 'com.toedter:spring-hateoas-jsonapi:1.5.0' + // implementation 'com.toedter:spring-hateoas-jsonapi:1.5.1' implementation project(':lib') testImplementation('org.springframework.boot:spring-boot-starter-test') { diff --git a/lib/build.gradle b/lib/build.gradle index b397b026..bb7b27d5 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -14,7 +14,7 @@ plugins { } group = 'com.toedter' -version = '1.5.1-SNAPSHOT' +version = '1.5.1' sourceCompatibility = '1.8' repositories { diff --git a/lib/src/main/asciidoc/setup.adoc b/lib/src/main/asciidoc/setup.adoc index b2419c0e..82e9e107 100644 --- a/lib/src/main/asciidoc/setup.adoc +++ b/lib/src/main/asciidoc/setup.adoc @@ -9,16 +9,16 @@ To enable the JSON:API media type you just need to add this module as a dependen com.toedter spring-hateoas-jsonapi - 1.5.0 + 1.5.1 ---- [source,groovy,indent=0,role="secondary"] .Gradle ---- -implementation 'com.toedter:spring-hateoas-jsonapi:1.5.0' +implementation 'com.toedter:spring-hateoas-jsonapi:1.5.1' ---- -The latest published snapshot version is `1.5.1-SNAPSHOT`. +The latest published snapshot version is `1.5.2-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.