Skip to content

Commit

Permalink
Update docs and examples to 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Oct 2, 2020
1 parent 7c37a8e commit c3723b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The following Gradle features are supported by the Rocker plugin:
* `RockerCompile` task instances participate in task configuration avoidance
* `RockerCompile` task instances participate in configuration caching
* `RockerCompile` task instances participate in incremental builds
* `RockerCompile` task instances are themselves incremental
* `RockerCompile` task instances are themselves incremental (if the Rocker hot reload feature is disabled)
* `RockerCompile` task instances participate in task output caching (if the Rocker hot reload feature is disabled)

# Compatibility
Expand All @@ -65,7 +65,7 @@ Apply the `nu.studer.rocker` plugin to your Gradle project.

```groovy
plugins {
id 'nu.studer.rocker' version '3.0.1'
id 'nu.studer.rocker' version '3.0.2'
}
```

Expand All @@ -78,7 +78,7 @@ This is a sample configuration:

```groovy
plugins {
id 'nu.studer.rocker' version '3.0.1'
id 'nu.studer.rocker' version '3.0.2'
id 'java'
}
Expand Down Expand Up @@ -139,6 +139,7 @@ See the self-contained example build scripts for the [Groovy DSL](example/groovy

# Changelog

+ 3.0.2 - Incremental task functionality turned off when Rocker's hot reload feature is enabled.
+ 3.0.1 - Made RockerCompile task remove empty output directories.
+ 3.0 - Changed the DSL.
+ 2.2.1 - Improved support for configuration avoidance.
Expand All @@ -160,6 +161,7 @@ Both feedback and contributions are very welcome.

# Acknowledgements

+ [gregopet](https://github.com/gregopet) (detailed issue report #11)
+ [facewindu](https://github.com/facewindu) (pr #10 to remove empty output directories)
+ [wolfs](https://github.com/wolfs) (support to make lazy properties work)
+ [eskatos](https://github.com/eskatos) (support to make configuration caching work)
Expand Down
2 changes: 1 addition & 1 deletion example/groovy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.rocker' version '3.0.1'
id 'nu.studer.rocker' version '3.0.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("nu.studer.rocker") version "3.0.1"
id("nu.studer.rocker") version "3.0.2"
id("java")
}

Expand Down

0 comments on commit c3723b3

Please # to comment.