Skip to content

Commit 017566d

Browse files
committed
Prepare for 2.7.3 release
1 parent c40736b commit 017566d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
4343
// in build.grade.kts for convention plugin build
4444
dependencies {
4545
// ...
46-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.2")
46+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.3")
4747
// ...
4848
}
4949

@@ -64,7 +64,7 @@ plugins {
6464
// in build.grade for convention plugin build
6565
dependencies {
6666
// ...
67-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.2")
67+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.3")
6868
// ...
6969
}
7070
@@ -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.7.2' 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.3' 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
```kotlin
8989
plugins {
90-
id("org.gradle.android.cache-fix") version "2.7.2" apply false
90+
id("org.gradle.android.cache-fix") version "2.7.3" apply false
9191
}
9292

9393
subprojects {
@@ -104,7 +104,7 @@ subprojects {
104104

105105
```groovy
106106
plugins {
107-
id "org.gradle.android.cache-fix" version "2.7.2" apply false
107+
id "org.gradle.android.cache-fix" version "2.7.3" apply false
108108
}
109109
110110
subprojects {

0 commit comments

Comments
 (0)