From 017566d207a1abbfac21065f04d612e7ce448124 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Thu, 3 Aug 2023 16:43:01 +0200 Subject: [PATCH] Prepare for 2.7.3 release --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4f5831b1..c8fcce82 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and // in build.grade.kts for convention plugin build dependencies { // ... - implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.2") + implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.3") // ... } @@ -64,7 +64,7 @@ plugins { // in build.grade for convention plugin build dependencies { // ... - implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.2") + implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.3") // ... } @@ -78,7 +78,7 @@ plugins { -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 +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 [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).
@@ -87,7 +87,7 @@ If you are not using convention plugins and would like a quick way of testing th ```kotlin plugins { - id("org.gradle.android.cache-fix") version "2.7.2" apply false + id("org.gradle.android.cache-fix") version "2.7.3" apply false } subprojects { @@ -104,7 +104,7 @@ subprojects { ```groovy plugins { - id "org.gradle.android.cache-fix" version "2.7.2" apply false + id "org.gradle.android.cache-fix" version "2.7.3" apply false } subprojects {