From 7831846373d1e9407a2ff8c487f70cedd5acb330 Mon Sep 17 00:00:00 2001 From: Chris Arriola Date: Wed, 27 Jan 2021 11:16:47 -0800 Subject: [PATCH] chore: Release v0.3 --- README.md | 4 ++-- plugin/build.gradle.kts | 2 +- sample-app/build.gradle.kts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5222f9f..dcadfc1 100644 --- a/README.md +++ b/README.md @@ -19,14 +19,14 @@ In your app-level `build.gradle` file: Groovy: ```groovy plugins { - id 'com.google.secrets_gradle_plugin' version '0.2' + id 'com.google.secrets_gradle_plugin' version '0.3' } ``` Kotlin: ```groovy plugins { - id("com.google.secrets_gradle_plugin") version "0.2" + id("com.google.secrets_gradle_plugin") version "0.3" } ``` diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 4b70f7d..60f21eb 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -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.2" + const val version = "0.3" const val implementationClass = "com.google.secrets_gradle_plugin.SecretsPlugin" } \ No newline at end of file diff --git a/sample-app/build.gradle.kts b/sample-app/build.gradle.kts index 8f936d3..50b5767 100644 --- a/sample-app/build.gradle.kts +++ b/sample-app/build.gradle.kts @@ -17,7 +17,7 @@ plugins { id("kotlin-android") // 1. Include the plugin - id("com.google.secrets_gradle_plugin") version "0.2" + id("com.google.secrets_gradle_plugin") version "0.3" } android {