-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61fa439
commit ee3dcd9
Showing
5 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
### 0.2.0 | ||
|
||
_Not Released Yet_ | ||
_Released 2023 Mar 06_ | ||
|
||
#### Improvements | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
### 0.1.0 | ||
### 0.2.0 | ||
|
||
_Released 2022 Jun 23_ | ||
_Released 2023 Mar 06_ | ||
|
||
#### Overview | ||
#### Improvements | ||
|
||
A Gradle plugin for using the Eclipse Compiler for Java (ECJ) for compiling Java files. | ||
- Added support for Gradle 8.0.2. | ||
- On Gradle 8.0.2 and later, the `javaCompiler` property of `JavaCompile` | ||
tasks is now respected and can be used to configure the JVM to be used to | ||
invoke the compiler. | ||
- Additionally, the up-to-date check should behave more predictably on Gradle 8. | ||
- Reworked the plugin to avoid eager task creation by migration to Gradle's APIs | ||
for lazy configuration. [[GH-10](https://github.com/TheMrMilchmann/gradle-ecj/pull/10)] (Thanks to @arturbosch) | ||
- Updated default ECJ version to `3.32.0` (from `3.30.0`). |
ee3dcd9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is failing because there is not enough memory available on some runners when executing tests in parallel. I'm continuing with the release anyway as multiple CI runs and local test runs succeeded. Will take care of this issue at some point after the release.