8000 [GR-59207] Release GraalVM 24.2.0. · oracle/graalpython@57f0285 · GitHub
[go: up one dir, main page]

Skip to content

Commit 57f0285

Browse files
committed
[GR-59207] Release GraalVM 24.2.0.
PullRequest: graalpython/3713
2 parents 01c3616 + 0d0fb16 commit 57f0285

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "585265d3c6bafc1d12054374377589b360307957" }
1+
{ "overlay": "16d0e566573ebdcf380bf6f309c02724baf4172b" }

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.2.0</com.oracle.graal.python.test.polyglot.version>
67+
<com.oracle.graal.python.test.polyglot.version>24.2.1</com.oracle.graal.python.test.polyglot.version>
6868
</properties>
6969

7070
<build>

graalpython/com.oracle.graal.python.test/src/tests/standalone/gradle/build/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "application"
3-
id 'org.graalvm.python' version '24.2.0'
3+
id 'org.graalvm.python' version '24.2.1'
44
id "org.graalvm.buildtools.native" version "0.10.2"
55
}
66

graalpython/com.oracle.graal.python.test/src/tests/standalone/gradle/build/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
application
3-
id("org.graalvm.python") version "24.2.0"
3+
id("org.graalvm.python") version "24.2.1"
44
id("org.graalvm.buildtools.native") version "0.10.2"
55
}
66

graalpython/com.oracle.graal.python.test/src/tests/standalone/jbang/EmptyPIPComments.j

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22

3-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
44
//PIP
55
// one blank after PIP
66
//PIP

graalpython/com.oracle.graal.python.test/src/tests/standalone/jbang/EmptyPythonResourceComment.j

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22

3-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
44
//PYTHON_RESOURCES_DIRECTORY
55

66
public class EmptyPythonResourceComment {

graalpython/com.oracle.graal.python.test/src/tests/standalone/jbang/EmptyPythonResourceCommentWithBlanks.j

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22

3-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
44
// resource dir with blanks
55
//PYTHON_RESOURCES_DIRECTORY
66

graalpython/com.oracle.graal.python.test/src/tests/standalone/jbang/NoPackagesResourcesDir.j

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22

3-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
44
//PYTHON_RESOURCES_DIRECTORY python-resources
55

66
public class NoPackagesResourcesDir {

graalpython/com.oracle.graal.python.test/src/tests/standalone/jbang/TwoPythonResourceComments.j

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22

3-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
44
//PYTHON_RESOURCES_DIRECTORY
55
//PYTHON_RESOURCES_DIRECTORY
66

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ SOFTWARE.
4545
<groupId>org.graalvm.python</groupId>
4646
<artifactId>graalpy-archetype-polyglot-app</artifactId>
4747
<!-- This version is always overridden when deploying using mx -->
48-
<version>24.2.0</version>
48+
<version>24.2.1</version>
4949
<url>http://www.graalvm.org/python</url>
5050
<description>Maven archetype providing a skeleton GraalPy - Java polyglot application.</description>
5151
<packaging>maven-archetype</packaging>

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.2.0</graalpy.version>
13+
<graalpy.version>24.2.1</graalpy.version>
1414
<graalpy.edition>python-community</graalpy.edition>
1515
<native-maven-plugin.version>0.10.4</native-maven-plugin.version>
1616
<maven.compiler.target>17</maven.compiler.target>

graalpython/graalpy-jbang/examples/hello.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*/
4141
///usr/bin/env jbang "$0" "$@" ; exit $?
4242
//JAVA 17+
43-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
43+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
4444
// specify python packages and their versions as if used with pip
4545
//PIP termcolor==2.2
4646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{/for}
66
{#if dependencies.isEmpty()}// //DEPS <dependency1> <dependency2>{/if}
77
{|
8-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
8+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
99
// specify python packages and their versions as if used with pip
1010
//PIP termcolor==2.2
1111
|}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//REPOS mc=https://repo1.maven.org/maven2/
99
//REPOS local=file://{path_to_local_repo}
1010
{|
11-
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
11+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.1}
1212
// specify python packages and their versions as if used with pip
1313
//PIP termcolor==2.2
1414
|}

graalpython/graalpy-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ SOFTWARE.
4848
<artifactId>graalpy-maven-plugin</artifactId>
4949
<packaging>maven-plugin</packaging>
5050
<!-- This version is always overridden when deploying using mx -->
51-
<version>24.2.0</version>
51+
<version>24.2.1</version>
5252
<url>http://www.graalvm.org/python</url>
5353
<name>graalpy-maven-plugin</name>
5454
<description>Handles python related resources in a maven GraalPy - Java polyglot application.</description>
@@ -57,7 +57,7 @@ SOFTWARE.
5757
<maven.compiler.target>17</maven.compiler.target>
5858
<maven.compiler.source>17</maven.compiler.source>
5959
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
60-
<graalpy.version>24.2.0</graalpy.version>
60+
<graalpy.version>24.2.1</graalpy.version>
6161
</properties>
6262

6363
<profiles>

mx.graalpython/suite.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "graalpython",
1010
"versionConflictResolution": "latest",
1111

12-
"version": "24.2.0",
12+
"version": "24.2.1",
1313
"graalpython:pythonVersion": "3.11.7",
1414
"release": False,
1515
"groupId": "org.graalvm.python",
@@ -45,31 +45,31 @@
4545
},
4646
{
4747
"name": "sdk",
48-
"version": "826d284d76d4e3c2379e952824f4ab7e96c805ee",
48+
"version": "c9096be682f7aa67f5133fb098762e2152ff355f",
4949
"subdir": True,
5050
"urls": [
5151
{"url": "https://github.com/oracle/graal", "kind": "git"},
5252
]
5353
},
5454
{
5555
"name": "tools",
56-
"version": "826d284d76d4e3c2379e952824f4ab7e96c805ee",
56+
"version": "c9096be682f7aa67f5133fb098762e2152ff355f",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "sulong",
64-
"version": "826d284d76d4e3c2379e952824f4ab7e96c805ee",
64+
"version": "c9096be682f7aa67f5133fb098762e2152ff355f",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},
6868
]
6969
},
7070
{
7171
"name": "regex",
72-
"version": "826d284d76d4e3c2379e952824f4ab7e96c805ee",
72+
"version": "c9096be682f7aa67f5133fb098762e2152ff355f",
7373
"subdir": True,
7474
"urls": [
7575
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)
0