Skip to content

Commit

Permalink
Bump default graal version to 20.2.0 (#396)
Browse files Browse the repository at this point in the history
* Bump default graal version to 20.2.0

This fixes a problem with projects that make use of the kotlin coroutines.
More details: oracle/graal#366

* Add changelog
  • Loading branch information
Dennis Dierkes authored Oct 29, 2020
1 parent 5f85487 commit dac18d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Configuration
Configure this plugin and its wrappers around GraalVM tools through the `graal` extension with the following options:

**General GraalVM controls**
* `graalVersion`: the version string to use when downloading GraalVM (defaults to `20.0.0`)
* `graalVersion`: the version string to use when downloading GraalVM (defaults to `20.2.0`)
* `downloadBaseUrl`: the base download URL to use (defaults to `https://github.com/oracle/graal/releases/download/`)
* `javaVersion`: the Java version to use (can be either `8` or `11`, defaults to `8`)
* for `8`: Windows SDK 7.1 will be used (`C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd`)
Expand Down
5 changes: 5 additions & 0 deletions changelog/@unreleased/pr-396.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: improvement
improvement:
description: Bump default graal version to 20.2.0
links:
- https://github.com/palantir/gradle-graal/pull/396
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class GraalExtension {
private static final String DEFAULT_DOWNLOAD_BASE_URL = "https://github.com/oracle/graal/releases/download/";
private static final String DOWNLOAD_BASE_URL_GRAAL_19_3 =
"https://github.com/graalvm/graalvm-ce-builds/" + "releases/download/";
private static final String DEFAULT_GRAAL_VERSION = "20.0.0";
private static final String DEFAULT_GRAAL_VERSION = "20.2.0";
private static final List<String> SUPPORTED_JAVA_VERSIONS = Arrays.asList("11", "8");
private static final String DEFAULT_JAVA_VERSION = "8";

Expand Down

0 comments on commit dac18d3

Please sign in to comment.