We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d706286 commit 18fc7f7Copy full SHA for 18fc7f7
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.1</revision>
+ <revision>0.1.2</revision>
33
<maven.compiler.release>17</maven.compiler.release>
34
<picocli.version>4.7.7</picocli.version>
35
<javaparser.version>3.27.1</javaparser.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.1";
+ version = "0.1.2";
13
}
14
return new String[] {version};
15
0 commit comments