diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ac98a3..8a1679f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelist Items listed here may not be exhaustive, if you are seeing issues, check the git commits for more specific change information &| open an issue. +## 0.12.0 +Gradle cache support thanks to [@CristianGM](https://github.com/CristianGM) via #05fa40275bf3958495a1d1f5207e8acd23279e6a (pending gradle 5.6?) + ## 0.11.1 "--with-orchestrator" arity consistency fix, thank you for the find and fix. [@JKMirko](https://github.com/JKMirko) diff --git a/README.md b/README.md index 14d40ea..5b3668f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The plugin is available via the [Gradle Plugin Portal](https://plugins.gradle.or ```groovy plugins { - id "com.trevjonez.composer" version "0.11.1" + id "com.trevjonez.composer" version "0.12.0" } ``` @@ -24,7 +24,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "com.trevjonez.composer:plugin:0.11.1" + classpath "com.trevjonez.composer:plugin:0.12.0" } } @@ -40,7 +40,7 @@ buildscript { maven { url "https://jitpack.io" } } dependencies { - classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.11.1' + classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.12.0' } } ``` @@ -189,8 +189,9 @@ version of gradle is 5.0 or higher if mandated by the android gradle plugin. Composer plugin version | Gradle version | Android plugin version | ------ | ------ | ------ | -| 0.10.0 | 5.0, 5.1, 5.1.1 | 3.3.0, 3.4.0-beta01\*, 3.5.0-alpha01\* | -| 0.11.* | 5.3.1 | 3.3.2, 3.5.0-alpha09\* | +| 0.10.0 | 5.0, 5.1, 5.1.1 | 3.3.0, 3.4.0-beta01\*, 3.5.0-alpha01\* | +| 0.11.* | 5.3.1 | 3.3.2, 3.5.0-alpha09\* | +| 0.12.0 | 5.4.1 | 3.4.1, 3.5.0-beta03\*, 3.6.0-alpha02\* | \* Alpha, Beta and RC versions of the android plugin are quickly tested by building against them. This usually means the published composer plugin will work with those version diff --git a/gradle.properties b/gradle.properties index 21e843e..8a83d93 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,12 +16,13 @@ group=com.trevjonez.composer -CGP_VERSION=0.11.2 +CGP_VERSION=0.12.0 -AGP_VERSION=3.3.2 -#AGP_VERSION=3.5.0-alpha09 +AGP_VERSION=3.4.1 +#AGP_VERSION=3.5.0-beta03 +#AGP_VERSION=3.6.0-alpha02 -KOTLIN_VERSION=1.3.21 +KOTLIN_VERSION=1.3.31 GRADLE_SCAN_VERSION=2.3 org.gradle.caching=true diff --git a/plugin/src/test/kotlin/com/trevjonez/composer/ComposerPluginTest.kt b/plugin/src/test/kotlin/com/trevjonez/composer/ComposerPluginTest.kt index 2283321..434d139 100644 --- a/plugin/src/test/kotlin/com/trevjonez/composer/ComposerPluginTest.kt +++ b/plugin/src/test/kotlin/com/trevjonez/composer/ComposerPluginTest.kt @@ -46,7 +46,6 @@ class ComposerPluginTest { .withProjectDir(projectDir) .withPluginClasspath() .withArguments(argList) - .withGradleVersion("5.3.1") .forwardOutput() }