Skip to content

Commit

Permalink
chore: release version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toedter committed Mar 12, 2022
1 parent a6837c2 commit bf82b56
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:
|===
| 1.2.1 | https://toedter.github.io/spring-hateoas-jsonapi/1.2.1/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.2.1/api/[API Documentation]
| 1.2.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.3.0 | https://toedter.github.io/spring-hateoas-jsonapi/1.3.0/reference/[Reference Documentation] | https://toedter.github.io/spring-hateoas-jsonapi/1.3.0/api/[API Documentation]
| 1.3.1-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>1.2.1</version>
<version>1.3.0</version>
</dependency>

Gradle:
[source]
implementation 'com.toedter:spring-hateoas-jsonapi:1.2.1'
implementation 'com.toedter:spring-hateoas-jsonapi:1.3.0'

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

repositories {
Expand All @@ -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.2.1'
// implementation 'com.toedter:spring-hateoas-jsonapi:1.3.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 {
}

group = 'com.toedter'
version = '1.2.2-SNAPSHOT'
version = '1.3.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>1.2.1</version>
<version>1.3.0</version>
</dependency>
----

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

The latest published snapshot version is `1.2.2-SNAPSHOT`.
The latest published snapshot version is `1.3.1-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 bf82b56

Please sign in to comment.