Skip to content

Commit

Permalink
Bump versions and fix nightlies (#189)
Browse files Browse the repository at this point in the history
* Bump versions and fix nightlies

* Revert slf4j changes

* Revert slf4j changes

---------

Co-authored-by: Michael Lieshoff <[email protected]>
  • Loading branch information
mlieshoff and Michael Lieshoff authored Apr 26, 2024
1 parent f98925a commit d3ab76a
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,21 @@

## [Unreleased]

## [4.0.3] - 2024-04-26

### Added

- Apply data model changes on different endpoints (#185)
* (new field) players.info.CurrentFavouriteCard.maxEvolutionLevel

### Changed

- Upgrade to newer versions for several libraries

## [4.0.2] - 2024-02-16

### Added

- Apply data model changes on different endpoints (#185)
* (new field) players.info.Player.supportCards
* (new field) players.info.Player.currentDeckSupportCards
Expand Down Expand Up @@ -177,7 +190,8 @@

- Create a Release job (#152)

[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.2...HEAD
[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.3...HEAD
[4.0.3]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.2...4.0.3
[4.0.2]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.1...4.0.2
[4.0.1]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.0...4.0.1
[4.0.0]: https://github.com/mlieshoff/jcrapi2/compare/v3.0.5...4.0.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![](https://img.shields.io/badge/java-packagecloud.io-844fec.svg)](https://packagecloud.io/)
[![Nightlies](https://github.com/mlieshoff/jcrapi2/actions/workflows/nightlies.yml/badge.svg)](https://github.com/mlieshoff/jcrapi2/actions/workflows/nightlies.yml)

# jcrapi2 4.0.2
# jcrapi2 4.0.3
A Java Wrapper For Official Supercell Clash Royal Api

## Why we don't use the Swagger scheme?
Expand Down Expand Up @@ -454,15 +454,15 @@ All requests are returning *java.concurrent.Future*. The execution will be async

to Gradle:
```groovy
implementation group: 'jcrapi2', name: 'jcrapi2', version: '4.0.2'
implementation group: 'jcrapi2', name: 'jcrapi2', version: '4.0.3'
```

to Maven:
```xml
<dependency>
<groupId>jcrapi2</groupId>
<artifactId>jcrapi2</artifactId>
<version>4.0.2</version>
<version>4.0.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v4.0.2
v4.0.3
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jcrapi2</artifactId>
<packaging>jar</packaging>
<version>4.0.2</version>
<version>4.0.3</version>
<groupId>jcrapi2</groupId>
<url>https://maven.apache.org</url>
<inceptionYear>2018</inceptionYear>
<description>java connector for official supercell clash royale api</description>
<description>Java connector for the official Supercell Clash Royale API</description>
<developers>
<developer>
<id>michael.lieshoff (ML)</id>
Expand All @@ -32,12 +32,12 @@
</licenses>
<properties>
<version.gson>2.10.1</version.gson>
<version.io>2.15.1</version.io>
<version.io>2.16.1</version.io>
<version.jacoco>0.8.11</version.jacoco>
<version.java>17</version.java>
<version.json>1.1.4</version.json>
<version.junit>5.10.1</version.junit>
<version.lombok>1.18.30</version.lombok>
<version.junit>5.10.2</version.junit>
<version.lombok>1.18.32</version.lombok>
<version.maven.compiler>3.11.0</version.maven.compiler>
<version.maven.dependency>3.6.1</version.maven.dependency>
<version.maven.enforcer>3.4.1</version.maven.enforcer>
Expand All @@ -46,8 +46,8 @@
<version.maven.surfire>3.2.3</version.maven.surfire>
<version.maven.surfire.junit>1.0.3</version.maven.surfire.junit>
<version.maven.packagecloud>0.0.4</version.maven.packagecloud>
<version.mockito>5.8.0</version.mockito>
<version.slf4j>2.0.9</version.slf4j>
<version.mockito>5.11.0</version.mockito>
<version.slf4j>2.0.13</version.slf4j>
<version.supercell.api.wrapper.essentials>1.0.0</version.supercell.api.wrapper.essentials>
<version.wiremock>3.0.1</version.wiremock>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ public class CurrentFavouriteCard {
@SerializedName("maxLevel")
private int maxLevel;

@SerializedName("maxEvolutionLevel")
private int maxEvolutionLevel;

@SerializedName("iconUrls")
private IconUrls iconUrls;

Expand Down

0 comments on commit d3ab76a

Please sign in to comment.