Skip to content

Commit 36a0166

Browse files
authored
Merge pull request #41 from androidx/versionbump2
Bump versions for re-release with perf fix
2 parents 6fe38b8 + eade693 commit 36a0166

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
@@ -41,7 +41,8 @@ gradlePlugin {
4141
id = "androidx.build.gradle.gcpbuildcache"
4242
displayName = "Gradle GCP Build Cache Plugin"
4343
description = """
44-
- Warn when a user incorrectly configures GCP bucket to be used for the cache.
44+
- Performance optimization for pulling large remote cache entries, see
45+
https://github.com/androidx/gcp-gradle-build-cache/pull/40
4546
""".trimIndent()
4647
implementationClass = "androidx.build.gradle.gcpbuildcache.GcpGradleBuildCachePlugin"
4748
tags = listOf("buildcache", "gcp", "caching")
@@ -50,7 +51,7 @@ gradlePlugin {
5051
}
5152

5253
group = "androidx.build.gradle.gcpbuildcache"
53-
version = "1.0.0-beta05"
54+
version = "1.0.0-beta06"
5455

5556
testing {
5657
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
@@ -48,15 +48,18 @@ gradlePlugin {
4848
create("s3buildcache") {
4949
id = "androidx.build.gradle.s3buildcache"
5050
displayName = "Gradle AWS S3 Build Cache Plugin"
51-
description = "Gradle remote build cache backed by AWS S3"
51+
description = """
52+
- Performance optimization for pulling large remote cache entries, see
53+
https://github.com/androidx/gcp-gradle-build-cache/pull/40
54+
""".trimIndent()
5255
implementationClass = "androidx.build.gradle.s3buildcache.S3GradleBuildCachePlugin"
5356
tags = listOf("buildcache", "s3", "caching")
5457
}
5558
}
5659
}
5760

5861
group = "androidx.build.gradle.s3buildcache"
59-
version = "1.0.0-alpha02"
62+
version = "1.0.0-alpha03"
6063

6164
testing {
6265
suites {

0 commit comments

Comments
 (0)