Skip to content

Commit

Permalink
Fix nightlies (#63)
Browse files Browse the repository at this point in the history
* Fix nightlies

* Correct changelog

---------

Co-authored-by: Michael Lieshoff <[email protected]>
  • Loading branch information
mlieshoff and Michael Lieshoff authored Feb 15, 2024
1 parent 54537ff commit d311cb8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [4.0.1] - 2024-05-15

### Fixed

- surefire now uses the build dependencies and no more inner ones.

## [4.0.0] - 2023-12-18

### Added
Expand Down Expand Up @@ -85,7 +91,8 @@

- Create release job #41

[unreleased]: https://github.com/mlieshoff/brawljars/compare/v4.0.0...HEAD
[unreleased]: https://github.com/mlieshoff/brawljars/compare/v4.0.1...HEAD
[4.0.1]: https://github.com/mlieshoff/brawljars/compare/v4.0.0...v4.0.1
[4.0.0]: https://github.com/mlieshoff/brawljars/compare/v3.0.8...v4.0.0
[3.0.8]: https://github.com/mlieshoff/brawljars/compare/v3.0.7...v3.0.8
[3.0.7]: https://github.com/mlieshoff/brawljars/compare/v3.0.6...v3.0.7
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/brawljars/actions/workflows/nightlies.yml/badge.svg)](https://github.com/mlieshoff/brawljars/actions/workflows/nightlies.yml)

# brawljars 4.0.0
# brawljars 4.0.1
A Java Wrapper For Official Supercell Brawl Stars Api

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

to Gradle:
```groovy
implementation group: 'brawljars', name: 'brawljars', version: '4.0.0'
implementation group: 'brawljars', name: 'brawljars', version: '4.0.1'
```

to Maven:
```xml
<dependency>
<groupId>brawljars</groupId>
<artifactId>brawljars</artifactId>
<version>4.0.0</version>
<version>4.0.1</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.0
v4.0.1
14 changes: 1 addition & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>brawljars</artifactId>
<packaging>jar</packaging>
<version>4.0.0</version>
<version>4.0.1</version>
<groupId>brawljars</groupId>
<url>https://maven.apache.org</url>
<inceptionYear>2020</inceptionYear>
Expand Down Expand Up @@ -167,18 +167,6 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven.surfire}</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${version.maven.surfire.junit}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>**/EndToEnd.java</include>
Expand Down

0 comments on commit d311cb8

Please sign in to comment.