Skip to content

Commit 71b0bf0

Browse files
committed
Release 4.0.0
1 parent 7508656 commit 71b0bf0

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
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+
## [4.0.0]
810
- Adjust the categories of some endpoints to match with the official [Spotify Web API Reference](https://developer.spotify.com/documentation/web-api). No endpoint have been removed, they just got moved to other categories.
911
- Added `CategoriesApi` and `GenresApi` category
1012
- Removed `BrowseApe`, `LibraryApi` and `PersonalizationApi`
@@ -19,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1921
- Fix return type of "Get Featured Playlists request" from `PagedPlaylistsAndMessage` to `PagingFeaturedPlaylist`
2022
- Fix type of `narrators` field in `AudiobookBase` from `Narrator` to `List<Narrator>`
2123
- Bump jackson to `2.15.2`
22-
- Bump okhttp to `4.10.0`
24+
- Bump okhttp to `4.11.0`
2325

2426
## [3.1.0]
2527
- Change the API of the recommendations request. All `seed*` parameters are now considered optional because not all of them are always required. It must be at least one `seed*` parameter present.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ This library is available on [Maven Central](https://search.maven.org/artifact/d
1414
<dependency>
1515
<groupId>de.sonallux.spotify</groupId>
1616
<artifactId>spotify-web-api-java</artifactId>
17-
<version>3.1.0</version>
17+
<version>4.0.0</version>
1818
</dependency>
1919
```
2020

2121
### With gradle
2222
```groovy
23-
compile 'de.sonallux.spotify:spotify-web-api-java:3.1.0'
23+
compile 'de.sonallux.spotify:spotify-web-api-java:4.0.0'
2424
```
2525

2626
## 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>3.1.0</version>
9+
<version>4.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>3.1.0</version>
10+
<version>4.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>spotify-web-api-java-generator</artifactId>
15-
<version>3.1.0</version>
15+
<version>4.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>3.1.0</version>
10+
<version>4.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

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

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

0 commit comments

Comments
 (0)