Skip to content

Commit ebc4121

Browse files
committed
Prepare for 3.0 release
1 parent bd288e0 commit ebc4121

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
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.8.0")
46+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.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.8.0")
67+
implementation("org.gradle.android.cache-fix:org.gradle.android.cache-fix.gradle.plugin:3.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.8.0' 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 '3.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.8.0" apply false
90+
id("org.gradle.android.cache-fix") version "3.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.8.0" apply false
107+
id "org.gradle.android.cache-fix" version "3.0" apply false
108108
}
109109
110110
subprojects {

release/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [NEW] - Drop support for `RoomWorkaround`. Please apply the [Room Gradle Plugin](https://developer.android.com/jetpack/androidx/releases/room#2.6.0-alpha02).
2+
- [BREAKING] - `room` extension removed.

release/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.2
1+
3.0

0 commit comments

Comments
 (0)