Skip to content

Commit

Permalink
0.12.0 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
trevjonez committed Jun 3, 2019
1 parent 260c233 commit 189b74a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand All @@ -24,7 +24,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath "com.trevjonez.composer:plugin:0.11.1"
classpath "com.trevjonez.composer:plugin:0.12.0"
}
}
Expand All @@ -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'
}
}
```
Expand Down Expand Up @@ -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<sup>\*</sup>, 3.5.0-alpha01<sup>\*</sup> |
| 0.11.* | 5.3.1 | 3.3.2, 3.5.0-alpha09<sup>\*</sup> |
| 0.10.0 | 5.0, 5.1, 5.1.1 | 3.3.0, 3.4.0-beta01<sup>\*</sup>, 3.5.0-alpha01<sup>\*</sup> |
| 0.11.* | 5.3.1 | 3.3.2, 3.5.0-alpha09<sup>\*</sup> |
| 0.12.0 | 5.4.1 | 3.4.1, 3.5.0-beta03<sup>\*</sup>, 3.6.0-alpha02<sup>\*</sup> |

\* 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
Expand Down
9 changes: 5 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class ComposerPluginTest {
.withProjectDir(projectDir)
.withPluginClasspath()
.withArguments(argList)
.withGradleVersion("5.3.1")
.forwardOutput()
}

Expand Down

0 comments on commit 189b74a

Please sign in to comment.