Skip to content

Commit ddfc1a9

Browse files
committed
Update hardcoded versions.
1 parent c665db3 commit ddfc1a9

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

graalpython/com.oracle.graal.python.test.integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Additionally, one can change the polyglot artifacts version with
6464
<maven.compiler.source>17</maven.compiler.source>
6565
<maven.compiler.target>17</maven.compiler.target>
6666
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
67-
<com.oracle.graal.python.test.polyglot.version>24.0.1-dev</com.oracle.graal.python.test.polyglot.version>
67+
<com.oracle.graal.python.test.polyglot.version>24.0.2-dev</com.oracle.graal.python.test.polyglot.version>
6868
</properties>
6969

7070
<build>

graalpython/graalpy-archetype-polyglot-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ SOFTWARE.
4444

4545
<groupId>org.graalvm.python</groupId>
4646
<artifactId>graalpy-archetype-polyglot-app</artifactId>
47-
<version>24.0.1</version>
47+
<version>24.0.2</version>
4848
<packaging>maven-archetype</packaging>
4949

5050
<properties>

graalpython/graalpy-archetype-polyglot-app/src/main/resources/archetype-resources/pom.xml

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

1111
#set( $symbol_dollar = '$' )
1212
<properties>
13-
<graalpy.version>24.0.1</graalpy.version>
13+
<graalpy.version>24.0.2</graalpy.version>
1414
<graalpy.edition>python-community</graalpy.edition>
1515
<maven.compiler.target>17</maven.compiler.target>
1616
<maven.compiler.source>17</maven.compiler.source>

graalpython/graalpy-jbang/examples/hello.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
*/
4141
///usr/bin/env jbang "$0" "$@" ; exit $?
4242

43-
//DEPS org.graalvm.python:python-language:24.0.1
44-
//DEPS org.graalvm.python:python-resources:24.0.1
45-
//DEPS org.graalvm.python:python-launcher:24.0.1
46-
//DEPS org.graalvm.python:python-embedding:24.0.1
43+
//DEPS org.graalvm.python:python-language:24.0.2
44+
//DEPS org.graalvm.python:python-resources:24.0.2
45+
//DEPS org.graalvm.python:python-launcher:24.0.2
46+
//DEPS org.graalvm.python:python-embedding:24.0.2
4747
//PIP termcolor
4848

4949
import org.graalvm.polyglot.Context;

graalpython/graalpy-jbang/templates/graalpy-template.java.qute

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
{/for}
55
{#if dependencies.isEmpty()}// //DEPS <dependency1> <dependency2>{/if}
66

7-
//DEPS org.graalvm.python:python-language:24.0.1
8-
//DEPS org.graalvm.python:python-resources:24.0.1
9-
//DEPS org.graalvm.python:python-launcher:24.0.1
10-
//DEPS org.graalvm.python:python-embedding:24.0.1
7+
//DEPS org.graalvm.python:python-language:24.0.2
8+
//DEPS org.graalvm.python:python-resources:24.0.2
9+
//DEPS org.graalvm.python:python-launcher:24.0.2
10+
//DEPS org.graalvm.python:python-embedding:24.0.2
1111
//PIP termcolor
1212

1313
import org.graalvm.polyglot.Context;

graalpython/graalpy-jbang/templates/graalpy-template_local_repo.java.qute

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
//REPOS mc=https://repo1.maven.org/maven2/
88
//REPOS local=file://{path_to_local_repo}
9-
//DEPS org.graalvm.python:python-language:24.0.1
10-
//DEPS org.graalvm.python:python-resources:24.0.1
11-
//DEPS org.graalvm.python:python-launcher:24.0.1
12-
//DEPS org.graalvm.python:python-embedding:24.0.1
9+
//DEPS org.graalvm.python:python-language:24.0.2
10+
//DEPS org.graalvm.python:python-resources:24.0.2
11+
//DEPS org.graalvm.python:python-launcher:24.0.2
12+
//DEPS org.graalvm.python:python-embedding:24.0.2
1313
//PIP termcolor
1414

1515
import org.graalvm.polyglot.Context;

graalpython/graalpy-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ SOFTWARE.
4747
<groupId>org.graalvm.python</groupId>
4848
<artifactId>graalpy-maven-plugin</artifactId>
4949
<packaging>maven-plugin</packaging>
50-
<version>24.0.1</version>
50+
<version>24.0.2</version>
5151
<name>graalpy-maven-plugin</name>
5252

5353
<properties>
5454
<maven.compiler.target>17</maven.compiler.target>
5555
<maven.compiler.source>17</maven.compiler.source>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57-
<graalpy.version>24.0.1</graalpy.version>
57+
<graalpy.version>24.0.2</graalpy.version>
5858
</properties>
5959

6060
<build>

0 commit comments

Comments
 (0)