Skip to content

Commit

Permalink
Prepare for 3.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdsap committed Feb 9, 2024
1 parent e44132f commit 1860b80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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:3.0")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0.1")
// ...
}

Expand All @@ -63,7 +63,7 @@ plugins {
// in build.grade for convention plugin build
dependencies {
// ...
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.0.1")
// ...
}
Expand All @@ -77,7 +77,7 @@ plugins {

</details>

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
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
[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).

<details open>
Expand All @@ -86,7 +86,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 "3.0" apply false
id("org.gradle.android.cache-fix") version "3.0.1" apply false
}

subprojects {
Expand All @@ -103,7 +103,7 @@ subprojects {

```groovy
plugins {
id "org.gradle.android.cache-fix" version "3.0" apply false
id "org.gradle.android.cache-fix" version "3.0.1" apply false
}
subprojects {
Expand Down
3 changes: 3 additions & 0 deletions release/changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- [NEW] - Drop support for ZipMergingTaskWorkaround in AGP >= 8.1.
- [NEW] - Drop support for MergeSourceSetFoldersWorkaround in AGP >= 8.4.
- [FIX] - Avoid capturing module descriptor in JdkImageWorkaround when AGP >= 8.

0 comments on commit 1860b80

Please sign in to comment.