Skip to content

Commit

Permalink
chore: prepare 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Mar 6, 2023
1 parent 61fa439 commit ee3dcd9
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 9 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This plugin is loosely based on [Niklas Walter's Gradle Eclipse Compiler for Jav

```groovy
plugins {
id "io.github.themrmilchmann.ecj" version "0.1.0"
id "io.github.themrmilchmann.ecj" version "0.2.0"
}
```

Expand Down Expand Up @@ -48,7 +48,7 @@ ecj {

```kotlin
plugins {
id("io.github.themrmilchmann.ecj") version "0.1.0"
id("io.github.themrmilchmann.ecj") version "0.2.0"
}
```

Expand Down Expand Up @@ -78,6 +78,7 @@ ecj {

| Gradle | Minimal plugin version |
|--------|------------------------|
| 8.0 | 0.2.0 |
| 7.4 | 0.1.0 |


Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.2.0.md
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

Expand Down
4 changes: 2 additions & 2 deletions docs/changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

### Version History

* ????-??-?? [0.2.0](0.2.0.md) (TDB; work in progress)
* 2022-06-23 [0.1.0](0.1.0.md) (latest)
* 2023-03-06 [0.2.0](0.2.0.md) (latest)
* 2022-06-23 [0.1.0](0.1.0.md)


This library is strictly following [SemVer 2.0.0](https://semver.org/spec/v2.0.0.html).
18 changes: 18 additions & 0 deletions docs/changelog/full.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
### 0.2.0

_Released 2023 Mar 06_

#### Improvements

- 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`).


---

### 0.1.0

_Released 2022 Jun 23_
Expand Down
15 changes: 11 additions & 4 deletions docs/changelog/latest.md
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`).

1 comment on commit ee3dcd9

@TheMrMilchmann
Copy link
Owner Author

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.

Please sign in to comment.