Skip to content

Commit

Permalink
chore: Release v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arriolac committed Feb 18, 2021
1 parent b85ff47 commit 48bdf78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ In your app-level `build.gradle` file:
Groovy:
```groovy
plugins {
id 'com.google.secrets_gradle_plugin' version '0.4'
id 'com.google.secrets_gradle_plugin' version '0.5'
}
```

Kotlin:
```groovy
plugins {
id("com.google.secrets_gradle_plugin") version "0.4"
id("com.google.secrets_gradle_plugin") version "0.5"
}
```

Expand Down
2 changes: 1 addition & 1 deletion 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"
const val artifactId = "secrets_gradle_plugin"
const val name = "secretsGradlePlugin"
const val version = "0.4"
const val version = "0.5"
const val implementationClass = "com.google.secrets_gradle_plugin.SecretsPlugin"
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ class SecretsPlugin : Plugin<Project> {
val buildTypeProperties = try {
project.rootProject.loadPropertiesFile(buildTypeFileName)
} catch (e: FileNotFoundException) {
println("Could not find $buildTypeFileName")
null
}
buildTypeProperties?.let {
Expand All @@ -76,7 +75,6 @@ class SecretsPlugin : Plugin<Project> {
val flavorProperties = try {
project.rootProject.loadPropertiesFile(flavorFileName)
} catch (e: FileNotFoundException) {
println("Could not find $flavorFileName")
null
}
flavorProperties?.let {
Expand Down
2 changes: 1 addition & 1 deletion sample-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id("kotlin-android")

// 1. Include the plugin
id("com.google.secrets_gradle_plugin") version "0.4"
id("com.google.secrets_gradle_plugin") version "0.5"
}

android {
Expand Down

0 comments on commit 48bdf78

Please sign in to comment.