Skip to content

Commit 14ef12d

Browse files
committed
Release 3.0.0
1 parent fa12fb0 commit 14ef12d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [3.0.0]
810
The Java wrapper generator has been completely rewritten and uses now OpenAPI definition of the Spotify Web API as source.
911
The OpenAPI definition contains fixes and improvements from my [spotify-web-api](https://github.com/sonallux/spotify-web-api) repository.
1012
Therefore, some model class names have changed and many fixes are included.

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,21 @@
66

77
A Java wrapper for Spotify's Web API.
88

9-
This is the 2.x.x version of the `spotify-web-api-java` library. The 1.x.x version can be found on the [1.x branch](https://github.com/sonallux/spotify-web-api-java/tree/1.x)
10-
119
## Installation
12-
This library is available on [Maven Central](https://search.maven.org/artifact/de.sonallux.spotify/spotify-web-api-java) and requires at least Java 11.
10+
This library is available on [Maven Central](https://search.maven.org/artifact/de.sonallux.spotify/spotify-web-api-java) and requires at least Java 17.
1311

1412
### With maven
1513
```xml
1614
<dependency>
1715
<groupId>de.sonallux.spotify</groupId>
1816
<artifactId>spotify-web-api-java</artifactId>
19-
<version>2.4.0</version>
17+
<version>3.0.0</version>
2018
</dependency>
2119
```
2220

2321
### With gradle
2422
```groovy
25-
compile 'de.sonallux.spotify:spotify-web-api-java:2.4.0'
23+
compile 'de.sonallux.spotify:spotify-web-api-java:3.0.0'
2624
```
2725

2826
## General usage

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.sonallux.spotify</groupId>
88
<artifactId>spotify-web-api-java-parent</artifactId>
9-
<version>2.4.0</version>
9+
<version>3.0.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>spotify-web-api-java-parent</name>

spotify-web-api-java-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>de.sonallux.spotify</groupId>
99
<artifactId>spotify-web-api-java-parent</artifactId>
10-
<version>2.4.0</version>
10+
<version>3.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>spotify-web-api-java-generator</artifactId>
15-
<version>2.4.0</version>
15+
<version>3.0.0</version>
1616
<packaging>jar</packaging>
1717

1818
<name>spotify-web-api-java-generator</name>

spotify-web-api-java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>de.sonallux.spotify</groupId>
99
<artifactId>spotify-web-api-java-parent</artifactId>
10-
<version>2.4.0</version>
10+
<version>3.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>spotify-web-api-java</artifactId>
15-
<version>2.4.0</version>
15+
<version>3.0.0</version>
1616
<packaging>jar</packaging>
1717

1818
<name>spotify-web-api-java</name>

0 commit comments

Comments
 (0)