Skip to content

Commit dfd6c76

Browse files
committed
Update versions
1 parent 13d9c51 commit dfd6c76

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

docs/graalvm-as-a-platform/implement-language.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Assuming `JAVA_HOME` points to the GraalVM installation and that the current wor
182182

183183
```shell
184184
$JAVA_HOME/bin/java \
185-
-cp launcher/target/launcher-22.0.0-SNAPSHOT.jar \
185+
-cp launcher/target/launcher-22.1.0-SNAPSHOT.jar \
186186
-Dtruffle.class.path.append=language/target/simplelanguage.jar \
187187
com.oracle.truffle.sl.launcher.SLMain language/tests/Add.sl
188188
```
@@ -205,8 +205,8 @@ Apply the `--upgrade-module-path` option together with `-Dgraalvm.locatorDisable
205205

206206
A sample POM using `--upgrade-module-path` to export Language API packages can be found in the [Simple Language POM.xml](https://github.com/graalvm/simplelanguage/blob/master/language/pom.xml#L58) file.
207207

208-
NOTE: Disabling the locator effectively removes all installed languages from the module path as the locator also creates the class loader for the languages.
209-
To still use the builtin languages add them to the module-path by pointing the module-path to all needed language homes (e.g. $GRAALVM/languages/js).
208+
> Note: Disabling the locator effectively removes all installed languages from the module path as the locator also creates the class loader for the languages.
209+
To still use the builtin languages add them to the module-path by pointing the module-path to all needed language homes (for example, `$GRAALVM/languages/js`).
210210

211211
### Other JVM Implementations
212212

@@ -217,6 +217,6 @@ Assuming `JAVA_HOME` points to a stock JDK installation, and that the current wo
217217

218218
```shell
219219
$JAVA_HOME/bin/java \
220-
-cp graal-sdk-22.0.0.jar:truffle-api-22.0.0.jar:launcher/target/launcher-22.0.0-SNAPSHOT.jar:language/target/simplelanguage.jar \
220+
-cp graal-sdk-22.1.0.jar:truffle-api-22.1.0.jar:launcher/target/launcher-22.1.0-SNAPSHOT.jar:language/target/simplelanguage.jar \
221221
com.oracle.truffle.sl.launcher.SLMain language/tests/Add.sl
222222
```

docs/guides/guides.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ Give it a name, and press Apply.
8686
![](/img/add-project-sdk.png)
8787

8888
If you wish to add GraalVM SDK platform-wise, navigate to Project Structure -> Platform Settings -> SDK.
89-
Then press the plus button (+) -> Add JDK and open the folder where you installed GraalVM.
90-
Give it a name and press Apply.
89+
Then press the plus button, click Add JDK and open the folder where you installed GraalVM.
90+
Give it a name and click Apply.
9191

9292
4. Run the project. Setting GraalVM SDK as default for all project modules ensures that you run the project on GraalVM.
9393
To double-check that, verify the project's Run configurations: from the main menu select Run -> Run... -> Edit Configurations, expand Environment, and check the provided value.
9494
It should show GraalVM.
95-
Press Run.
95+
Click Run.
9696

9797
![](/img/run-jre-configurations.png)
9898

@@ -107,7 +107,6 @@ Press Debug.
107107

108108
This will run the application and start a debugger session in the background.
109109

110-
111110
## Configure JVM Options for Applications Running on GraalVM
112111

113112
You can use Java HotSpot VM command line options and GraalVM specific options to configure the `java` process running on GraalVM.

docs/reference-manual/polyglot-programming.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ polyglot --jvm --shell
200200

201201
If you have installed all optional languages packs to the core GraalVM installation, then the Polyglot Shell will look like:
202202
```shell
203-
GraalVM MultiLanguage Shell 22.0.0
203+
GraalVM MultiLanguage Shell 22.1.0
204204
Copyright (c) 2013-2021, Oracle and/or its affiliates
205-
Java version 22.0.0
206-
JavaScript version 22.0.0
205+
Java version 22.1.0
206+
JavaScript version 22.1.0
207207
Python version 3.8.5
208208
R version 4.0.3
209209
Ruby version 3.0.2

truffle/docs/README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@ permalink: /graalvm-as-a-platform/language-implementation-framework/
66
---
77
# Truffle Language Implementation Framework
88

9-
The Truffle language implementation framework (henceforth "Truffle") is an open source library for building tools and programming languages implementations as interpreters for self-modifying Abstract Syntax Trees.
10-
Together with the open source [Graal Compiler](https://github.com/oracle/graal/tree/master/compiler), Truffle represents a significant step
11-
forward in programming language implementation technology in the current era of dynamic languages.
9+
The Truffle language implementation framework (Truffle) is an open source library for building tools and programming languages implementations as interpreters for self-modifying Abstract Syntax Trees.
10+
Together with the open source [Graal compiler](https://github.com/oracle/graal/tree/master/compiler), Truffle represents a significant step forward in programming language implementation technology in the current era of dynamic languages.
1211

13-
The Truffle bits are uploaded to [Maven central](https://mvnrepository.com/artifact/org.graalvm.truffle). You can use them from your
14-
`pom.xml` file as:
12+
The Truffle bits are uploaded to [Maven central](https://mvnrepository.com/artifact/org.graalvm.truffle).
13+
You can use them from your `pom.xml` file as:
1514

1615
```xml
1716
<dependency>
1817
<groupId>org.graalvm.truffle</groupId>
1918
<artifactId>truffle-api</artifactId>
20-
<version>22.0.0</version> <!-- or any later version -->
19+
<version>22.1.0</version> <!-- or any later version -->
2120
</dependency>
2221
<dependency>
2322
<groupId>org.graalvm.truffle</groupId>
2423
<artifactId>truffle-dsl-processor</artifactId>
25-
<version>22.0.0<</version>
24+
<version>22.1.0<</version>
2625
<scope>provided</scope>
2726
</dependency>
2827
```

0 commit comments

Comments
 (0)