Skip to content

Commit

Permalink
Prepare for 2.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdsap committed Sep 11, 2023
1 parent fb68cd3 commit a704410
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,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:2.7.4")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.8.0")
// ...
}

Expand All @@ -64,7 +64,7 @@ plugins {
// in build.grade for convention plugin build
dependencies {
// ...
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.7.4")
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:2.8.0")
// ...
}
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.7.4' 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.8.0' 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

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

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

```groovy
plugins {
id "org.gradle.android.cache-fix" version "2.7.4" apply false
id "org.gradle.android.cache-fix" version "2.8.0" apply false
}
subprojects {
Expand Down
4 changes: 3 additions & 1 deletion release/changes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
- [FIX] - PGP key to sign the artifacts needs to be rotated
- [NEW] - Relaxing Android Gradle plugin version checks, eliminating failures due to patch version mismatches or future incompatible versions.
- [NEW] - Run tests against AGP 8.3.0-alpha03
- [NEW] - Run tests against AGP 8.2.0-beta02
- [NEW] - Run tests against AGP 8.2.0-beta02
2 changes: 1 addition & 1 deletion release/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
2.8.0

0 comments on commit a704410

Please sign in to comment.