Skip to content

Commit e0ecc57

Browse files
committed
Prepare for 2.7.0 release
1 parent 7454e6d commit e0ecc57

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
4444
// in build.grade for convention plugin build
4545
dependencies {
4646
// ...
47-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.5")
47+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.0")
4848
// ...
4949
}
5050
@@ -65,7 +65,7 @@ plugins {
6565
// in build.grade.kts for convention plugin build
6666
dependencies {
6767
// ...
68-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.5")
68+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.0")
6969
// ...
7070
}
7171

@@ -78,7 +78,7 @@ plugins {
7878
```
7979
</details>
8080

81-
If you are not using convention plugins and would like a quick way of testing the plugin you can alternatively place it in the root project's build.gradle (change '2.6.5' to the latest version of the cache fix plugin
81+
If you are not using convention plugins and would like a quick way of testing the plugin you can alternatively place it in the root project's build.gradle (change '2.7.0' to the latest version of the cache fix plugin
8282
[here](https://plugins.gradle.org/plugin/org.gradle.android.cache-fix)). We discourage this approach because it uses [cross project configuration](https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins_vs_cross_configuration).
8383

8484
<details open>
@@ -87,7 +87,7 @@ If you are not using convention plugins and would like a quick way of testing th
8787

8888
```groovy
8989
plugins {
90-
id "org.gradle.android.cache-fix" version "2.6.5" apply false
90+
id "org.gradle.android.cache-fix" version "2.7.0" apply false
9191
}
9292
9393
subprojects {
@@ -103,7 +103,7 @@ subprojects {
103103

104104
```kotlin
105105
plugins {
106-
id("org.gradle.android.cache-fix") version "2.6.5" apply false
106+
id("org.gradle.android.cache-fix") version "2.7.0" apply false
107107
}
108108

109109
subprojects {

release/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.6
1+
2.7.0

0 commit comments

Comments
 (0)