From c0f90b75f2abec49c985748131db49f8efa859ca Mon Sep 17 00:00:00 2001 From: Kai Toedter Date: Sat, 21 Aug 2021 14:41:11 +0200 Subject: [PATCH] chore: release version 1.0.2 --- 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 5882460d..9e47781d 100644 --- a/README.adoc +++ b/README.adoc @@ -17,8 +17,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.0.1 | https://toedter.github.io/spring-hateoas-jsonapi/1.0.1/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.0.1/api/[API Documentation] -| 1.0.2-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation] +| 1.0.2 | https://toedter.github.io/spring-hateoas-jsonapi/1.0.2/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.0.2/api/[API Documentation] +| 1.0.3-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 @@ -30,14 +30,14 @@ Maven: com.toedter spring-hateoas-jsonapi - 1.0.1 + 1.0.2 Gradle: [source] -implementation 'com.toedter:spring-hateoas-jsonapi:1.0.1' +implementation 'com.toedter:spring-hateoas-jsonapi:1.0.2' -The latest published snapshot version is `1.0.2-SNAPSHOT`. +The latest published snapshot version is `1.0.3-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 e13bdb2e..0c63ac21 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -6,7 +6,7 @@ plugins { } group = 'com.toedter' -version = '1.0.2-SNAPSHOT' +version = '1.0.2' sourceCompatibility = '1.8' repositories { @@ -23,7 +23,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-hateoas' // if you want to use the released version, use - // implementation 'com.toedter:spring-hateoas-jsonapi:1.0.1' + // implementation 'com.toedter:spring-hateoas-jsonapi:1.0.2' implementation project(':lib') testImplementation('org.springframework.boot:spring-boot-starter-test') { diff --git a/lib/build.gradle b/lib/build.gradle index 6bb7c5dc..618bcb99 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -11,7 +11,7 @@ plugins { apply plugin: 'java' group = 'com.toedter' -version = '1.0.2-SNAPSHOT' +version = '1.0.2' sourceCompatibility = '1.8' repositories { diff --git a/lib/src/main/asciidoc/setup.adoc b/lib/src/main/asciidoc/setup.adoc index 731b2a54..765ac8fa 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.0.1 + 1.0.2 ---- [source,groovy,indent=0,role="secondary"] .Gradle ---- -implementation 'com.toedter:spring-hateoas-jsonapi:1.0.1' +implementation 'com.toedter:spring-hateoas-jsonapi:1.0.2' ---- -The latest published snapshot version is `1.0.2-SNAPSHOT`. +The latest published snapshot version is `1.0.3-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.