Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# 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))
  • Loading branch information
semantic-release-bot committed Jun 9, 2021
1 parent e257430 commit 51b4d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ In your app-level `build.gradle` file:
Groovy:
```groovy
plugins {
id 'com.google.android.secrets_gradle_plugin' version '1.0'
id 'com.google.android.secrets_gradle_plugin' version '1.0.0'
}
```

Kotlin:
```groovy
plugins {
id("com.google.android.secrets_gradle_plugin") version "1.0"
id("com.google.android.secrets_gradle_plugin") version "1.0.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion secrets_gradle_plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ object PluginInfo {
const val group = "com.google.android"
const val artifactId = "secrets_gradle_plugin"
const val name = "secretsGradlePlugin"
const val version = "1.0"
const val version = "1.0.0"
const val implementationClass = "com.google.android.secrets_gradle_plugin.SecretsPlugin"
}

0 comments on commit 51b4d54

Please sign in to comment.