We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ee231 commit cdbf162Copy full SHA for cdbf162
2 files changed
pom.xml
@@ -29,7 +29,7 @@
29
30
<properties>
31
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32
- <revision>0.1.0</revision>
+ <revision>0.1.1</revision>
33
<maven.compiler.release>17</maven.compiler.release>
34
<picocli.version>4.7.7</picocli.version>
35
<junit.version>5.11.4</junit.version>
src/main/java/com/jaipilot/cli/JaiPilotVersionProvider.java
@@ -9,7 +9,7 @@ public String[] getVersion() {
9
Package commandPackage = JaiPilotCli.class.getPackage();
10
String version = commandPackage == null ? null : commandPackage.getImplementationVersion();
11
if (version == null || version.isBlank()) {
12
- version = "0.1.0";
+ version = "0.1.1";
13
}
14
return new String[] {version};
15
0 commit comments