Skip to content

Commit 48bdf78

Browse files
committed
chore: Release v0.5
1 parent b85ff47 commit 48bdf78

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ In your app-level `build.gradle` file:
1919
Groovy:
2020
```groovy
2121
plugins {
22-
id 'com.google.secrets_gradle_plugin' version '0.4'
22+
id 'com.google.secrets_gradle_plugin' version '0.5'
2323
}
2424
```
2525

2626
Kotlin:
2727
```groovy
2828
plugins {
29-
id("com.google.secrets_gradle_plugin") version "0.4"
29+
id("com.google.secrets_gradle_plugin") version "0.5"
3030
}
3131
```
3232

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"
7373
const val artifactId = "secrets_gradle_plugin"
7474
const val name = "secretsGradlePlugin"
75-
const val version = "0.4"
75+
const val version = "0.5"
7676
const val implementationClass = "com.google.secrets_gradle_plugin.SecretsPlugin"
7777
}

plugin/src/main/java/com/google/secrets_gradle_plugin/SecretsPlugin.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ class SecretsPlugin : Plugin<Project> {
6464
val buildTypeProperties = try {
6565
project.rootProject.loadPropertiesFile(buildTypeFileName)
6666
} catch (e: FileNotFoundException) {
67-
println("Could not find $buildTypeFileName")
6867
null
6968
}
7069
buildTypeProperties?.let {
@@ -76,7 +75,6 @@ class SecretsPlugin : Plugin<Project> {
7675
val flavorProperties = try {
7776
project.rootProject.loadPropertiesFile(flavorFileName)
7877
} catch (e: FileNotFoundException) {
79-
println("Could not find $flavorFileName")
8078
null
8179
}
8280
flavorProperties?.let {

sample-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
id("kotlin-android")
1818

1919
// 1. Include the plugin
20-
id("com.google.secrets_gradle_plugin") version "0.4"
20+
id("com.google.secrets_gradle_plugin") version "0.5"
2121
}
2222

2323
android {

0 commit comments

Comments
 (0)