Skip to content

Commit

Permalink
chore: release 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toedter committed May 22, 2021
1 parent e44869e commit 7878aa5
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 @@ -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:
|===
| 0.16.1 | https://toedter.github.io/spring-hateoas-jsonapi/0.16.1/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/0.16.1/api/[API Documentation]
| 0.17.0-SNAPSHOT | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/snapshot/api/[API Documentation]
| 0.17.0 | https://toedter.github.io/spring-hateoas-jsonapi/0.17.0/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/0.17.0/api/[API Documentation]
| 0.18.0-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
Expand All @@ -30,14 +30,14 @@ Maven:
<dependency>
<groupId>com.toedter</groupId>
<artifactId>spring-hateoas-jsonapi</artifactId>
<version>0.16.1</version>
<version>0.17.0</version>
</dependency>

Gradle:
[source]
implementation 'com.toedter:spring-hateoas-jsonapi:0.16.1'
implementation 'com.toedter:spring-hateoas-jsonapi:0.17.0'

The latest published snapshot version is `0.17.0-SNAPSHOT`.
The latest published snapshot version is `0.18.0-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 = '0.17.0-SNAPSHOT'
version = '0.17.0'
sourceCompatibility = '1.8'

repositories {
Expand All @@ -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:0.16.1'
// implementation 'com.toedter:spring-hateoas-jsonapi:0.17.0'
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 @@ -11,7 +11,7 @@ plugins {
apply plugin: 'java'

group = 'com.toedter'
version = '0.17.0-SNAPSHOT'
version = '0.17.0'
sourceCompatibility = '1.8'

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 @@ -9,16 +9,16 @@ To enable the JSON:API media type you just need to add this module as a dependen
<dependency>
<groupId>com.toedter</groupId>
<artifactId>spring-hateoas-jsonapi</artifactId>
<version>0.16.1</version>
<version>0.17.0</version>
</dependency>
----

[source,groovy,indent=0,role="secondary"]
.Gradle
----
implementation 'com.toedter:spring-hateoas-jsonapi:0.16.1'
implementation 'com.toedter:spring-hateoas-jsonapi:0.17.0'
----

The latest published snapshot version is `0.17.0-SNAPSHOT`.
The latest published snapshot version is `0.18.0-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.

0 comments on commit 7878aa5

Please sign in to comment.