Skip to content

Commit eade693

Browse files
committed
Bump versions for re-release with perf fix
1 parent 8e694d8 commit eade693

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

gcpbuildcache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In your `settings.gradle.kts` file add the following
88

99
```kotlin
1010
plugins {
11-
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta05"
11+
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta06"
1212
}
1313

1414
import androidx.build.gradle.gcpbuildcache.GcpBuildCache
@@ -36,7 +36,7 @@ If you are using Groovy, then you should do the following:
3636

3737
```groovy
3838
plugins {
39-
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta05"
39+
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta06"
4040
}
4141
4242
import androidx.build.gradle.gcpbuildcache.GcpBuildCache

gcpbuildcache/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ gradlePlugin {
3939
id = "androidx.build.gradle.gcpbuildcache"
4040
displayName = "Gradle GCP Build Cache Plugin"
4141
description = """
42-
- Warn when a user incorrectly configures GCP bucket to be used for the cache.
42+
- Performance optimization for pulling large remote cache entries, see
43+
https://github.com/androidx/gcp-gradle-build-cache/pull/40
4344
""".trimIndent()
4445
implementationClass = "androidx.build.gradle.gcpbuildcache.GcpGradleBuildCachePlugin"
4546
tags = listOf("buildcache", "gcp", "caching")
@@ -48,7 +49,7 @@ gradlePlugin {
4849
}
4950

5051
group = "androidx.build.gradle.gcpbuildcache"
51-
version = "1.0.0-beta05"
52+
version = "1.0.0-beta06"
5253

5354
testing {
5455
suites {

s3buildcache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In your `settings.gradle(.kts)` file add the following
88

99
```kotlin
1010
plugins {
11-
id("androidx.build.gradle.s3buildcache") version "1.0-beta02"
11+
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha03"
1212
}
1313

1414
import androidx.build.gradle.s3buildcache.S3BuildCache
@@ -36,7 +36,7 @@ If you are using Groovy, then you should do the following:
3636

3737
```groovy
3838
plugins {
39-
id("androidx.build.gradle.s3buildcache") version "1.0-beta01"
39+
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha03"
4040
}
4141
4242
import androidx.build.gradle.s3buildcache.ExportedS3Credentials

s3buildcache/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,18 @@ gradlePlugin {
4747
create("s3buildcache") {
4848
id = "androidx.build.gradle.s3buildcache"
4949
displayName = "Gradle AWS S3 Build Cache Plugin"
50-
description = "Gradle remote build cache backed by AWS S3"
50+
description = """
51+
- Performance optimization for pulling large remote cache entries, see
52+
https://github.com/androidx/gcp-gradle-build-cache/pull/40
53+
""".trimIndent()
5154
implementationClass = "androidx.build.gradle.s3buildcache.S3GradleBuildCachePlugin"
5255
tags = listOf("buildcache", "s3", "caching")
5356
}
5457
}
5558
}
5659

5760
group = "androidx.build.gradle.s3buildcache"
58-
version = "1.0.0-alpha02"
61+
version = "1.0.0-alpha03"
5962

6063
testing {
6164
suites {

0 commit comments

Comments
 (0)