Skip to content

Commit a704410

Browse files
committed
Prepare for 2.8.0 release
1 parent fb68cd3 commit a704410

File tree

3 files changed

+9
-7
lines changed

3 files changed

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

release/changes.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
- [FIX] - PGP key to sign the artifacts needs to be rotated
2+
- [NEW] - Relaxing Android Gradle plugin version checks, eliminating failures due to patch version mismatches or future incompatible versions.
13
- [NEW] - Run tests against AGP 8.3.0-alpha03
2-
- [NEW] - Run tests against AGP 8.2.0-beta02
4+
- [NEW] - Run tests against AGP 8.2.0-beta02

release/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.5
1+
2.8.0

0 commit comments

Comments
 (0)