Skip to content

Commit e35b700

Browse files
committed
bump version
1 parent 5facd5f commit e35b700

File tree

12 files changed

+25
-20
lines changed

12 files changed

+25
-20
lines changed

container-image-generator/container-images/java/base-21/app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>generate-app</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010

1111
<properties>
1212
<java.version>21</java.version>

container-image-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>llm-code-executor</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010
</parent>
1111

1212
<artifactId>container-image-generator</artifactId>

container-image-generator/src/main/resources/templates/java/pom.xml.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>generate-app</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010

1111
<properties>
1212
<java.version>{{javaVersion}}</java.version>

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>llm-code-executor</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010
</parent>
1111

1212
<artifactId>core</artifactId>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.javaaidev.llmcodeexecutor</groupId>
4040
<artifactId>code-executor-model</artifactId>
41-
<version>0.2.0</version>
41+
<version>0.3.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>com.github.docker-java</groupId>

executor-model/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>com.javaaidev.llmcodeexecutor</groupId>
99
<artifactId>llm-code-executor</artifactId>
10-
<version>0.2.0</version>
10+
<version>0.3.0</version>
1111
</parent>
1212

1313

1414
<groupId>com.javaaidev.llmcodeexecutor</groupId>
1515
<artifactId>code-executor-model</artifactId>
16-
<version>0.2.0</version>
16+
<version>0.3.0</version>
1717
<packaging>jar</packaging>
1818

1919
<name>ExecuteCode</name>

executors/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>executors</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010
</parent>
1111

1212
<artifactId>executor-java</artifactId>

executors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>llm-code-executor</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010
</parent>
1111

1212
<artifactId>executors</artifactId>

executors/python/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev.llmcodeexecutor</groupId>
88
<artifactId>executors</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010
</parent>
1111

1212
<artifactId>executor-python</artifactId>

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>llm-code-executor</artifactId>
99
<name>LLM Code Executor</name>
1010
<description>Execute code for LLM</description>
11-
<version>0.2.0</version>
11+
<version>0.3.0</version>
1212
<packaging>pom</packaging>
1313

1414
<url>https://github.com/JavaAIDev/llm-code-executor</url>
@@ -18,6 +18,11 @@
1818
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
1919
</license>
2020
</licenses>
21+
<organization>
22+
<name>JavaAIDev.com</name>
23+
<url>https://javaaidev.com</url>
24+
</organization>
25+
<inceptionYear>2025</inceptionYear>
2126

2227
<developers>
2328
<developer>

tools/java/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>com.javaaidev.llmcodeexecutor</groupId>
99
<artifactId>tools</artifactId>
10-
<version>0.2.0</version>
10+
<version>0.3.0</version>
1111
</parent>
1212

1313

1414
<groupId>com.javaaidev.llmcodeexecutor</groupId>
1515
<artifactId>tool-java</artifactId>
16-
<version>0.2.0</version>
16+
<version>0.3.0</version>
1717
<packaging>jar</packaging>
1818

1919
<name>ExecuteJavaCode</name>
@@ -35,12 +35,12 @@
3535
<dependency>
3636
<groupId>com.javaaidev.llmcodeexecutor</groupId>
3737
<artifactId>code-executor-model</artifactId>
38-
<version>0.2.0</version>
38+
<version>0.3.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.javaaidev.llmcodeexecutor</groupId>
4242
<artifactId>executor-java</artifactId>
43-
<version>0.2.0</version>
43+
<version>0.3.0</version>
4444
</dependency>
4545
</dependencies>
4646

0 commit comments

Comments
 (0)