Skip to content

Commit 1d4d27c

Browse files
committed
chore: release version 2.0.7
1 parent 60efdcc commit 1d4d27c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
image:https://github.com/toedter/spring-hateoas-jsonapi/workflows/Build/badge.svg["build", link="https://github.com/toedter/spring-hateoas-jsonapi/actions"]
33
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"]
44
image:https://codecov.io/gh/toedter/spring-hateoas-jsonapi/branch/main/graph/badge.svg["coverage", link="https://codecov.io/gh/toedter/spring-hateoas-jsonapi"]
5-
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"]
5+
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"]
66
image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["Apache 2.0", link="https://opensource.org/licenses/Apache-2.0"]
77

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

1919
Here you find the documentation for the releases and the current snapshot:
2020
|===
21-
| 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]
22-
| 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]
21+
| 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]
22+
| 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]
2323
| 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]
2424
|===
2525

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

3939
Gradle:
4040
[source]
41-
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
41+
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.7'
4242

4343
Maven:
4444
[source,xml]
4545
<dependency>
4646
<groupId>com.toedter</groupId>
4747
<artifactId>spring-hateoas-jsonapi</artifactId>
48-
<version>2.0.6</version>
48+
<version>2.0.7</version>
4949
</dependency>
5050

51-
The latest published snapshot version is `2.0.7-SNAPSHOT`.
51+
The latest published snapshot version is `2.0.8-SNAPSHOT`.
5252
If you want to try it out,
5353
please make sure to add `https://oss.sonatype.org/content/repositories/snapshots/`
5454
as a repository to your Maven or Gradle configuration.

example/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.toedter'
9-
version = '2.0.7-SNAPSHOT'
9+
version = '2.0.7'
1010
sourceCompatibility = '1.17'
1111

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

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

3333
testImplementation('org.springframework.boot:spring-boot-starter-test') {

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
}
1717

1818
group = 'com.toedter'
19-
version = '2.0.7-SNAPSHOT'
19+
version = '2.0.7'
2020
sourceCompatibility = '1.17'
2121

2222
repositories {

lib/src/main/asciidoc/setup.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To enable the JSON:API media type you just need to add this module as a dependen
66
[source,groovy,indent=0,role="primary"]
77
.Gradle
88
----
9-
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
9+
implementation 'com.toedter:spring-hateoas-jsonapi:2.0.7'
1010
----
1111

1212
[source,xml,indent=0,role="secondary"]
@@ -15,9 +15,9 @@ implementation 'com.toedter:spring-hateoas-jsonapi:2.0.6'
1515
<dependency>
1616
<groupId>com.toedter</groupId>
1717
<artifactId>spring-hateoas-jsonapi</artifactId>
18-
<version>2.0.6</version>
18+
<version>2.0.7</version>
1919
</dependency>
2020
----
2121

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

0 commit comments

Comments
 (0)