Skip to content

Commit

Permalink
Merge pull request #41 from androidx/versionbump2
Browse files Browse the repository at this point in the history
Bump versions for re-release with perf fix
  • Loading branch information
liutikas authored Dec 21, 2023
2 parents 6fe38b8 + eade693 commit 36a0166
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions gcpbuildcache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In your `settings.gradle.kts` file add the following

```kotlin
plugins {
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta05"
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta06"
}

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

```groovy
plugins {
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta05"
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta06"
}
import androidx.build.gradle.gcpbuildcache.GcpBuildCache
Expand Down
5 changes: 3 additions & 2 deletions gcpbuildcache/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ gradlePlugin {
id = "androidx.build.gradle.gcpbuildcache"
displayName = "Gradle GCP Build Cache Plugin"
description = """
- Warn when a user incorrectly configures GCP bucket to be used for the cache.
- Performance optimization for pulling large remote cache entries, see
https://github.com/androidx/gcp-gradle-build-cache/pull/40
""".trimIndent()
implementationClass = "androidx.build.gradle.gcpbuildcache.GcpGradleBuildCachePlugin"
tags = listOf("buildcache", "gcp", "caching")
Expand All @@ -50,7 +51,7 @@ gradlePlugin {
}

group = "androidx.build.gradle.gcpbuildcache"
version = "1.0.0-beta05"
version = "1.0.0-beta06"

testing {
suites {
Expand Down
4 changes: 2 additions & 2 deletions s3buildcache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In your `settings.gradle(.kts)` file add the following

```kotlin
plugins {
id("androidx.build.gradle.s3buildcache") version "1.0-beta02"
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha03"
}

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

```groovy
plugins {
id("androidx.build.gradle.s3buildcache") version "1.0-beta01"
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha03"
}
import androidx.build.gradle.s3buildcache.ExportedS3Credentials
Expand Down
7 changes: 5 additions & 2 deletions s3buildcache/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,18 @@ gradlePlugin {
create("s3buildcache") {
id = "androidx.build.gradle.s3buildcache"
displayName = "Gradle AWS S3 Build Cache Plugin"
description = "Gradle remote build cache backed by AWS S3"
description = """
- Performance optimization for pulling large remote cache entries, see
https://github.com/androidx/gcp-gradle-build-cache/pull/40
""".trimIndent()
implementationClass = "androidx.build.gradle.s3buildcache.S3GradleBuildCachePlugin"
tags = listOf("buildcache", "s3", "caching")
}
}
}

group = "androidx.build.gradle.s3buildcache"
version = "1.0.0-alpha02"
version = "1.0.0-alpha03"

testing {
suites {
Expand Down

0 comments on commit 36a0166

Please sign in to comment.