Skip to content

Commit f4fdb7d

Browse files
committed
Prepare for 2.6.5 release
1 parent 0b2d8b5 commit f4fdb7d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This plugin should be applied anywhere the `com.android.application` or `com.and
4444
// in build.grade for convention plugin build
4545
dependencies {
4646
// ...
47-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.4")
47+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.5")
4848
// ...
4949
}
5050
@@ -65,7 +65,7 @@ plugins {
6565
// in build.grade.kts for convention plugin build
6666
dependencies {
6767
// ...
68-
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.4")
68+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.6.5")
6969
// ...
7070
}
7171

@@ -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.6.4' 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.6.5' 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
```groovy
8989
plugins {
90-
id "org.gradle.android.cache-fix" version "2.6.4" apply false
90+
id "org.gradle.android.cache-fix" version "2.6.5" apply false
9191
}
9292
9393
subprojects {
@@ -103,7 +103,7 @@ subprojects {
103103

104104
```kotlin
105105
plugins {
106-
id("org.gradle.android.cache-fix") version "2.6.4" apply false
106+
id("org.gradle.android.cache-fix") version "2.6.5" apply false
107107
}
108108

109109
subprojects {

release/changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [FIX] - JavaCompileWorkaround throws 'Cannot query the value of this property because it has no value available' (#432)

0 commit comments

Comments
 (0)