Skip to content

Commit

Permalink
Correct datatype for CurrentFavouriteCard.maxEvolutionLevel (#191)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Lieshoff <[email protected]>
  • Loading branch information
mlieshoff and Michael Lieshoff authored Apr 30, 2024
1 parent d3ab76a commit eea4e9f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## [4.0.4] - 2024-04-30

### Fixed

- Correct datatype for CurrentFavouriteCard.maxEvolutionLevel (#190)
* (changed field) players.info.CurrentFavouriteCard.maxEvolutionLevel to Integer

## [4.0.3] - 2024-04-26

### Added
Expand All @@ -11,7 +18,11 @@

### Changed

- Upgrade to newer versions for several libraries
- Apache Commons IO from 2.15.1 to 2.16.1
- JUnit from 5.10.10 to 5.10.2
- Lombok from 1.18.30 to 1.18.32
- Mockito from 5.8.0 to 5.11.0
- SLF4j from 2.0.9 to 2.0.13

## [4.0.2] - 2024-02-16

Expand Down Expand Up @@ -190,7 +201,8 @@

- Create a Release job (#152)

[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.3...HEAD
[unreleased]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.4...HEAD
[4.0.4]: https://github.com/mlieshoff/jcrapi2/compare/v4.0.3...4.0.4
[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
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.3
# jcrapi2 4.0.4
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.3'
implementation group: 'jcrapi2', name: 'jcrapi2', version: '4.0.4'
```

to Maven:
```xml
<dependency>
<groupId>jcrapi2</groupId>
<artifactId>jcrapi2</artifactId>
<version>4.0.3</version>
<version>4.0.4</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.3
v4.0.4
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jcrapi2</artifactId>
<packaging>jar</packaging>
<version>4.0.3</version>
<version>4.0.4</version>
<groupId>jcrapi2</groupId>
<url>https://maven.apache.org</url>
<inceptionYear>2018</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class CurrentFavouriteCard {
private int maxLevel;

@SerializedName("maxEvolutionLevel")
private int maxEvolutionLevel;
private Integer maxEvolutionLevel;

@SerializedName("iconUrls")
private IconUrls iconUrls;
Expand Down

0 comments on commit eea4e9f

Please sign in to comment.