Skip to content
This repository was archived by the owner on Oct 30, 2025. It is now read-only.

Commit 51b4d54

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2021-06-09) ### Features * Add support for build-variant properties. ([b85ff47](b85ff47)) * Add support for build-variant properties. ([#11](#11)) ([7afdf07](7afdf07)) * Adding support for providing a default properties file. ([#7](#7)) ([6982e8b](6982e8b)) * Don't throw if defaults provided. ([#8](#8)) ([123714b](123714b)) * Remove dependency on jcenter. ([#12](#12)) ([52eaeea](52eaeea))
1 parent e257430 commit 51b4d54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ In your app-level `build.gradle` file:
2121
Groovy:
2222
```groovy
2323
plugins {
24-
id 'com.google.android.secrets_gradle_plugin' version '1.0'
24+
id 'com.google.android.secrets_gradle_plugin' version '1.0.0'
2525
}
2626
```
2727

2828
Kotlin:
2929
```groovy
3030
plugins {
31-
id("com.google.android.secrets_gradle_plugin") version "1.0"
31+
id("com.google.android.secrets_gradle_plugin") version "1.0.0"
3232
}
3333
```
3434

secrets_gradle_plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ object PluginInfo {
7272
const val group = "com.google.android"
7373
const val artifactId = "secrets_gradle_plugin"
7474
const val name = "secretsGradlePlugin"
75-
const val version = "1.0"
75+
const val version = "1.0.0"
7676
const val implementationClass = "com.google.android.secrets_gradle_plugin.SecretsPlugin"
7777
}

0 commit comments

Comments
 (0)