Skip to content

Commit

Permalink
chore: release version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
toedter committed Feb 4, 2023
1 parent 036071d commit d019e23
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.1 | https://toedter.github.io/spring-hateoas-jsonapi/2.0.1/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/2.0.1/api/[API Documentation]
| 2.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]
| 2.0.2 | https://toedter.github.io/spring-hateoas-jsonapi/2.0.2/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/2.0.2/api/[API Documentation]
| 2.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]
| 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.1'
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.2'

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

The latest published snapshot version is `2.0.2-SNAPSHOT`.
The latest published snapshot version is `2.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.
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.2-SNAPSHOT'
version = '2.0.2'
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.1'
// implementation 'com.toedter:spring-hateoas-jsonapi:2.0.2'
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 @@ -14,7 +14,7 @@ plugins {
}

group = 'com.toedter'
version = '2.0.2-SNAPSHOT'
version = '2.0.2'
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.1'
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.2'
----

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

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

0 comments on commit d019e23

Please sign in to comment.