Skip to content

Commit c77c502

Browse files
committed
Prepare for 2.7.4 release
1 parent 1bd5061 commit c77c502

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+5-5
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.3")
46+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.4")
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.3")
67+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.4")
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.3' 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.4' 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.3" apply false
90+
id("org.gradle.android.cache-fix") version "2.7.4" 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.3" apply false
107+
id "org.gradle.android.cache-fix" version "2.7.4" apply false
108108
}
109109
110110
subprojects {

release/changes.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
- [NEW] Run tests against AGP 8.3.0-alpha01
22
- [NEW] Run tests against AGP 8.2.0-beta01
33
- [NEW] Run tests against AGP 8.1.1
4+
- [NEW] Removed `PackageForUnitTest` workaround AGP 8.3. Issue fixed: https://issuetracker.google.com/issues/292114808
5+

0 commit comments

Comments
 (0)