Skip to content

Commit 1d03546

Browse files
committed
Release 2.1.0
1 parent 339c349 commit 1d03546

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
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+
## [2.1.0]
810
- Update to spotify-web-api-core `2021.5.1`
911
- The `ids` parameter in the `RemoveShowsUserRequest` and `SaveShowsUserRequest` is now passed in the body
1012
- Add `htmlDescription` and `restrictions` fields to `Episode` and `SimplifiedEpisode`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ A Java wrapper for Spotify's Web API.
99
This is the 2.x.x version of the `spotify-web-api-java` library. The 1.x.x version can be found on the [master branch](https://github.com/sonallux/spotify-web-api-java/tree/master)
1010

1111
## Installation
12-
This library is available on [Maven Central](https://search.maven.org/search?q=g:%22de.sonallux.spotify%22%20AND%20a:%22spotify-web-api-java%22) and requires at least Java 11:
12+
This library is available on [Maven Central](https://search.maven.org/search?q=g:%22de.sonallux.spotify%22%20AND%20a:%22spotify-web-api-java%22) and requires at least Java 11.
1313

1414
### With maven
1515
```xml
1616
<dependency>
1717
<groupId>de.sonallux.spotify</groupId>
1818
<artifactId>spotify-web-api-java</artifactId>
19-
<version>2.0.0</version>
19+
<version>2.1.0</version>
2020
</dependency>
2121
```
2222

2323
### With gradle
2424
```groovy
25-
compile 'de.sonallux.spotify:spotify-web-api-java:2.0.0'
25+
compile 'de.sonallux.spotify:spotify-web-api-java:2.1.0'
2626
```
2727

2828
## General usage
@@ -48,7 +48,7 @@ Code example: [ClientCredentialsExample.java](spotify-web-api-java/src/test/java
4848

4949
## How to release a new version
5050
1. Update the version number with `./mvnw versions:set -DnewVersion="<version>" -DgenerateBackupPoms=false`
51-
2. Update CHANGELOG.md
51+
2. Update version in CHANGELOG.md and README.md
5252
3. Commit and push changes to GitHub
5353
4. Wait till CI is green
5454
5. Tag and push the commit created in step 1. A GitHub actions workflow will automatically deploy the artifacts to Maven Central.

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.0.0</version>
9+
<version>2.1.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.0.0</version>
10+
<version>2.1.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

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

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

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

0 commit comments

Comments
 (0)