Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions for re-release with perf fix #41

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -39,7 +39,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 @@ -48,7 +49,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 @@ -47,15 +47,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