Skip to content

Commit 1860b80

Browse files
committed
Prepare for 3.0.1 release
1 parent e44132f commit 1860b80

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
4242
// in build.grade.kts for convention plugin build
4343
dependencies {
4444
// ...
45-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0")
45+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0.1")
4646
// ...
4747
}
4848

@@ -63,7 +63,7 @@ plugins {
6363
// in build.grade for convention plugin build
6464
dependencies {
6565
// ...
66-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0")
66+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0.1")
6767
// ...
6868
}
6969
@@ -77,7 +77,7 @@ plugins {
7777

7878
</details>
7979

80-
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 '3.0' to the latest version of the cache fix plugin
80+
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 '3.0.1' to the latest version of the cache fix plugin
8181
[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).
8282

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

8787
```kotlin
8888
plugins {
89-
id("org.gradle.android.cache-fix") version "3.0" apply false
89+
id("org.gradle.android.cache-fix") version "3.0.1" apply false
9090
}
9191

9292
subprojects {
@@ -103,7 +103,7 @@ subprojects {
103103

104104
```groovy
105105
plugins {
106-
id "org.gradle.android.cache-fix" version "3.0" apply false
106+
id "org.gradle.android.cache-fix" version "3.0.1" apply false
107107
}
108108
109109
subprojects {

release/changes.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- [NEW] - Drop support for ZipMergingTaskWorkaround in AGP >= 8.1.
2+
- [NEW] - Drop support for MergeSourceSetFoldersWorkaround in AGP >= 8.4.
3+
- [FIX] - Avoid capturing module descriptor in JdkImageWorkaround when AGP >= 8.

0 commit comments

Comments
 (0)