Skip to content

Commit 705fc5a

Browse files
committed
Upgrade to 24.2.2 and GraalVM 24.0.2.
1 parent ab701c6 commit 705fc5a

File tree

44 files changed

+108
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+108
-108
lines changed

espresso/espresso-continuations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Each time it runs, the program increments a counter, displays the updated value,
55

66
## Preparation
77

8-
Install [Espresso 24.2.1](https://www.graalvm.org/latest/reference-manual/espresso/) and set the value of `JAVA_HOME` accordingly.
8+
Install [Espresso 24.2.2](https://www.graalvm.org/latest/reference-manual/espresso/) and set the value of `JAVA_HOME` accordingly.
99

1010
## Run the Application
1111

espresso/espresso-continuations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<url>https://www.example.com</url>
1212

1313
<properties>
14-
<espresso.version>24.2.1</espresso.version>
14+
<espresso.version>24.2.2</espresso.version>
1515
<serializer>java</serializer>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<maven.compiler.release>21</maven.compiler.release>

graaljs/graaljs-starter/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repositories {
99
}
1010

1111
dependencies {
12-
implementation("org.graalvm.polyglot:polyglot:24.2.1")
13-
implementation("org.graalvm.polyglot:js:24.2.1")
12+
implementation("org.graalvm.polyglot:polyglot:24.2.2")
13+
implementation("org.graalvm.polyglot:js:24.2.2")
1414

1515
// Use JUnit Jupiter for testing.
1616
testImplementation("org.junit.jupiter:junit-jupiter:5.11.0")

graaljs/graaljs-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<dependency>
3232
<groupId>org.graalvm.polyglot</groupId>
3333
<artifactId>polyglot</artifactId>
34-
<version>24.2.1</version>
34+
<version>24.2.2</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.graalvm.polyglot</groupId>
3838
<artifactId>js</artifactId>
39-
<version>24.2.1</version>
39+
<version>24.2.2</version>
4040
<type>pom</type>
4141
</dependency>
4242

graaljs/graaljs-webpack-guide/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ _build.gradle_
5454

5555
```gradle
5656
dependencies {
57-
implementation 'org.graalvm.polyglot:polyglot:24.2.1' // ①
58-
implementation 'org.graalvm.polyglot:js:24.2.1' // ②
57+
implementation 'org.graalvm.polyglot:polyglot:24.2.2' // ①
58+
implementation 'org.graalvm.polyglot:js:24.2.2' // ②
5959
}
6060
```
6161

@@ -129,13 +129,13 @@ _pom.xml_
129129
<dependency>
130130
<groupId>org.graalvm.polyglot</groupId>
131131
<artifactId>polyglot</artifactId> <!---->
132-
<version>24.2.1</version>
132+
<version>24.2.2</version>
133133
</dependency>
134134

135135
<dependency>
136136
<groupId>org.graalvm.polyglot</groupId>
137137
<artifactId>js</artifactId> <!---->
138-
<version>24.2.1</version>
138+
<version>24.2.2</version>
139139
<type>pom</type> <!---->
140140
</dependency>
141141
<!-- </dependencies> -->

graaljs/graaljs-webpack-guide/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ application {
1010
mainClass = 'com.example.App'
1111
}
1212
dependencies {
13-
implementation 'org.graalvm.polyglot:polyglot:24.2.1'
14-
implementation 'org.graalvm.polyglot:js:24.2.1'
13+
implementation 'org.graalvm.polyglot:polyglot:24.2.2'
14+
implementation 'org.graalvm.polyglot:js:24.2.2'
1515

1616
testImplementation platform('org.junit:junit-bom:5.11.0')
1717
testImplementation 'org.junit.jupiter:junit-jupiter-api'

graaljs/graaljs-webpack-guide/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>org.graalvm.polyglot</groupId>
3434
<artifactId>polyglot</artifactId>
35-
<version>24.2.1</version>
35+
<version>24.2.2</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.graalvm.polyglot</groupId>
3939
<artifactId>js</artifactId>
40-
<version>24.2.1</version>
40+
<version>24.2.2</version>
4141
<type>pom</type>
4242
</dependency>
4343

graalpy/graalpy-custom-venv-guide/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ Add the required dependencies for GraalPy in the `<dependencies>` section of the
5454
<dependency>
5555
<groupId>org.graalvm.polyglot</groupId>
5656
<artifactId>python</artifactId> <!---->
57-
<version>24.2.1</version>
57+
<version>24.2.2</version>
5858
<type>pom</type> <!---->
5959
</dependency>
6060

6161
<dependency>
6262
<groupId>org.graalvm.polyglot</groupId>
6363
<artifactId>polyglot</artifactId> <!---->
64-
<version>24.2.1</version>
64+
<version>24.2.2</version>
6565
</dependency>
6666
</dependencies>
6767
```

graalpy/graalpy-custom-venv-guide/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
<dependency>
1818
<groupId>org.graalvm.polyglot</groupId>
1919
<artifactId>python</artifactId> <!---->
20-
<version>24.2.1</version>
20+
<version>24.2.2</version>
2121
<type>pom</type> <!---->
2222
</dependency>
2323

2424
<dependency>
2525
<groupId>org.graalvm.polyglot</groupId>
2626
<artifactId>polyglot</artifactId> <!---->
27-
<version>24.2.1</version>
27+
<version>24.2.2</version>
2828
</dependency>
2929
</dependencies>
3030
</project>

graalpy/graalpy-freeze-dependencies-guide/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ For Maven, add dependency on GraalPy runtime, and configure the GraalPy Maven pl
6868
<dependency>
6969
<groupId>org.graalvm.polyglot</groupId>
7070
<artifactId>python</artifactId>
71-
<version>24.2.1</version>
71+
<version>24.2.2</version>
7272
<type>pom</type>
7373
</dependency>
7474
```
@@ -80,7 +80,7 @@ For Maven, add dependency on GraalPy runtime, and configure the GraalPy Maven pl
8080
<plugin>
8181
<groupId>org.graalvm.python</groupId>
8282
<artifactId>graalpy-maven-plugin</artifactId>
83-
<version>24.2.1</version>
83+
<version>24.2.2</version>
8484
<configuration>
8585
<packages> <!---->
8686
<package>vaderSentiment==3.3.2</package>
@@ -104,7 +104,7 @@ For Gradle, add the GraalPy plugin, configure it, and add the dependency on the
104104
```kotlin
105105
plugins {
106106
application
107-
id("org.graalvm.python") version "24.2.1"
107+
id("org.graalvm.python") version "24.2.2"
108108
}
109109
```
110110

@@ -178,7 +178,7 @@ If you use Maven, paste them in the `pom.xml` section of the packages and wrap t
178178
<plugin>
179179
<groupId>org.graalvm.python</groupId>
180180
<artifactId>graalpy-maven-plugin</artifactId>
181-
<version>24.2.1</version>
181+
<version>24.2.2</version>
182182
<configuration>
183183
<packages> <!---->
184184
<package>vaderSentiment==3.3.2</package>

0 commit comments

Comments
 (0)