Skip to content

Commit

Permalink
Merge pull request #407 from gradle/prepare_2_6_1
Browse files Browse the repository at this point in the history
Prepare for 2.6.1 release
  • Loading branch information
cdsap authored Jan 6, 2023
2 parents c0f4cbf + 30bb7be commit c1f19c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
// in build.grade for convention plugin build
dependencies {
// ...
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.0")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.1")
// ...
}
Expand All @@ -65,7 +65,7 @@ plugins {
// in build.grade.kts for convention plugin build
dependencies {
// ...
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.0")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.1")
// ...
}

Expand All @@ -78,7 +78,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 '2.6.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 '2.6.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 @@ -87,7 +87,7 @@ If you are not using convention plugins and would like a quick way of testing th

```groovy
plugins {
id "org.gradle.android.cache-fix" version "2.6.0" apply false
id "org.gradle.android.cache-fix" version "2.6.1" apply false
}
subprojects {
Expand All @@ -103,7 +103,7 @@ subprojects {

```kotlin
plugins {
id("org.gradle.android.cache-fix") version "2.6.0" apply false
id("org.gradle.android.cache-fix") version "2.6.1" apply false
}

subprojects {
Expand Down
1 change: 1 addition & 0 deletions release/changes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- [NEW] - Support AGP `7.4.0-rc03` and `8.0.0-alpha11`
- [FIX] - Error with Kotlin 1.8 : ClassNotFoundException: KaptWithKotlincTask
- [FIX] - Apply jdkImage workaround to all variants

0 comments on commit c1f19c0

Please sign in to comment.