8000 Restart the 24.2 dev cycle. · oracle/graalpython@fe4cf0b · GitHub
[go: up one dir, main page]

Skip to content

Commit fe4cf0b

Browse files
committed
Restart the 24.2 dev cycle.
Begin of the feature freeze for the 24.2 release. Revert "Start 25.0.0 dev cycle." This reverts commit f410584.
1 parent a45b371 commit fe4cf0b

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
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>25.0.0</com.oracle.graal.python.test.polyglot.version>
67+
<com.oracle.graal.python.test.polyglot.version>24.2.0</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 '25.0.0'
3+
id 'org.graalvm.python' version '24.2.0'
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 "25.0.0"
3+
id("org.graalvm.python") version "24.2.0"
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:25.0.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
3+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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>25.0.0</version>
48+
<version>24.2.0</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>25.0.0</graalpy.version>
13+
<graalpy.version>24.2.0</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:25.0.0}
43+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
8+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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:25.0.0}
11+
//DEPS org.graalvm.python:jbang:${env.GRAALPY_VERSION:24.2.0}
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>25.0.0</version>
51+
<version>24.2.0</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>25.0.0</graalpy.version>
60+
<graalpy.version>24.2.0</graalpy.version>
6161
</properties>
6262

6363
<profiles>

mx.graalpython/suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "graalpython",
1010
"versionConflictResolution": "latest",
1111

12-
"version": "25.0.0",
12+
"version": "24.2.0",
1313
"graalpython:pythonVersion": "3.11.7",
1414
"release": False,
1515
"groupId": "org.graalvm.python",

0 commit comments

Comments
 (0)
0