Skip to content

Commit 7a25431

Browse files
author
drone
committed
Merge branch 'hotfix/1.3.1' into github/main
2 parents ddce473 + 1b003bc commit 7a25431

5 files changed

Lines changed: 20 additions & 15 deletions

File tree

BUILD.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ mvn clean package -Dmaven.test.skip=true
4949
3. Run the CLI:
5050

5151
```sh
52-
java -jar target/warp4j-1.3.0-jar-with-dependencies.jar
52+
java -jar target/warp4j-1.3.1-jar-with-dependencies.jar
5353
```
5454

5555
---
@@ -59,8 +59,8 @@ java -jar target/warp4j-1.3.0-jar-with-dependencies.jar
5959
To use the built JAR to generate optimized platform-specific packages, run:
6060

6161
```sh
62-
java -jar target/warp4j-1.3.0-jar-with-dependencies.jar \
63-
--jar target/warp4j-1.3.0-jar-with-dependencies.jar \
62+
java -jar target/warp4j-1.3.1-jar-with-dependencies.jar \
63+
--jar target/warp4j-1.3.1-jar-with-dependencies.jar \
6464
--output target \
6565
--optimize \
6666
--linux \

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.3.1] - 2026-04-01
11+
### Changed
12+
- Update Maven dependencies
13+
1014
## [v1.3.0] - 2026-03-20
1115
### Added
1216
- Support warp-packer v1.3.0 and hidden console window
@@ -100,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
100104
- Supports optimization of different Java versions
101105

102106
[unreleased]: https://github.com/kirbylink/java-warp4j/compare/main...HEAD
107+
[v1.3.1]: https://github.com/kirbylink/java-warp4j/compare/v1.3.0...v1.3.1
103108
[v1.3.0]: https://github.com/kirbylink/java-warp4j/compare/v1.2.9...v1.3.0
104109
[v1.2.9]: https://github.com/kirbylink/java-warp4j/compare/v1.2.8...v1.2.9
105110
[v1.2.8]: https://github.com/kirbylink/java-warp4j/compare/v1.2.7...v1.2.8

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ To use `java-warp4j`:
120120
After building or downloading `java-warp4j`, run:
121121

122122
```bash
123-
java -jar warp4j-1.3.0-jar-with-dependencies.jar \
123+
java -jar warp4j-1.3.1-jar-with-dependencies.jar \
124124
--jar my-app.jar \
125125
--output ./target \
126126
--optimize \
@@ -223,8 +223,8 @@ docker pull ghcr.io/kirbylink/java-warp4j:latest
223223
### Example 1: Create a Linux aarch64 executable for [java-warp4j](https://github.com/kirbylink/java-warp4j)
224224
225225
```bash
226-
java -jar warp4j-1.3.0-jar-with-dependencies.jar \
227-
--jar /home/developer/git/java-warp4j/target/warp4j-1.3.0-jar-with-dependencies.jar \
226+
java -jar warp4j-1.3.1-jar-with-dependencies.jar \
227+
--jar /home/developer/git/java-warp4j/target/warp4j-1.3.1-jar-with-dependencies.jar \
228228
--output /home/developer/git/java-warp4j/target \
229229
--optimize \
230230
--class-path /home/developer/git/java-warp4j/target/classes \
@@ -236,7 +236,7 @@ java -jar warp4j-1.3.0-jar-with-dependencies.jar \
236236
### Example 2: Cross-compile for macOS and Windows for [java-e-liquid-calculator](https://github.com/kirbylink/java-e-liquid-calculator)
237237
238238
```bash
239-
java -jar warp4j-1.3.0-jar-with-dependencies.jar \
239+
java -jar warp4j-1.3.1-jar-with-dependencies.jar \
240240
--jar /home/developer/git/java-e-liquid-calculator/target/e-liquid-calculator-1.1.6-jar-with-dependencies.jar \
241241
--output /home/developer/git/java-e-liquid-calculator/target \
242242
--optimize \

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>warp4j</artifactId>
77
<name>Java Warp4J</name>
88
<description>Java Application that turns JAR files (java archive) into self-contained executable in a single command</description>
9-
<version>1.3.0</version>
9+
<version>1.3.1</version>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -16,19 +16,19 @@
1616
<gitflow.developmentBranch>develop</gitflow.developmentBranch>
1717
<gitflow.versionTagPrefix></gitflow.versionTagPrefix>
1818
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
19-
<lombok.version>1.18.42</lombok.version>
19+
<lombok.version>1.18.44</lombok.version>
2020
<slf4j-api.version>2.0.17</slf4j-api.version>
2121
<logback-classic.version>1.5.32</logback-classic.version>
22-
<openapi-generator-maven-plugin.version>7.20.0</openapi-generator-maven-plugin.version>
23-
<jackson-databind-nullable.version>0.2.9</jackson-databind-nullable.version>
22+
<openapi-generator-maven-plugin.version>7.21.0</openapi-generator-maven-plugin.version>
23+
<jackson-databind-nullable.version>0.2.10</jackson-databind-nullable.version>
2424
<com.fasterxml.jackson.annotation.version>2.21</com.fasterxml.jackson.annotation.version>
25-
<jackson-databind.version>2.21.1</jackson-databind.version>
26-
<jackson-core.version>2.21.1</jackson-core.version>
25+
<jackson-databind.version>2.21.2</jackson-databind.version>
26+
<jackson-core.version>2.21.2</jackson-core.version>
2727
<jakarta.annotation-api.version>3.0.0</jakarta.annotation-api.version>
2828
<commons-compress.version>1.28.0</commons-compress.version>
2929
<commons-io.version>2.21.0</commons-io.version>
3030
<picocli.version>4.7.7</picocli.version>
31-
<mockito-core.version>5.22.0</mockito-core.version>
31+
<mockito-core.version>5.23.0</mockito-core.version>
3232
<mockito-junit-jupiter.version>5.14.2</mockito-junit-jupiter.version>
3333
<junit-jupiter.version>6.0.3</junit-jupiter.version>
3434
<junit-platform-launcher.version>6.0.3</junit-platform-launcher.version>

0 commit comments

Comments
 (0)