From 3b3d7fc48c90be8e2d1a7057eb5285fa7bd933e0 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Mon, 19 Aug 2024 17:37:43 +0530 Subject: [PATCH] chore(android): prepare gradle plugin release 0.5.0 --- android/CHANGELOG.md | 8 ++++++++ android/measure-android-gradle/gradle.properties | 2 +- docs/android/README.md | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/android/CHANGELOG.md b/android/CHANGELOG.md index 723191197..6bbbf6015 100644 --- a/android/CHANGELOG.md +++ b/android/CHANGELOG.md @@ -38,6 +38,14 @@ Initial release to maven. # measure-android-gradle +## 0.5.0 +#### Features +* Add version constraints for bytecode transformation to ensure bytecode transformation is applied only to library + versions which are compatible by @abhaysood in https://github.com/measure-sh/measure/pull/1053 + +#### Fixes +* fix(android): plugin does not break configuration cache by @abhaysood in https://github.com/measure-sh/measure/pull/986 + ## 0.4.0 #### Fixes * Fix for plugin breaking the configuration cache by @abhaysood in https://github.com/measure-sh/measure/pull/986 diff --git a/android/measure-android-gradle/gradle.properties b/android/measure-android-gradle/gradle.properties index bd29dbc48..3567b3d73 100644 --- a/android/measure-android-gradle/gradle.properties +++ b/android/measure-android-gradle/gradle.properties @@ -1,5 +1,5 @@ MEASURE_PLUGIN_GROUP_ID=sh.measure.android.gradle MEASURE_PLUGIN_ARTIFACT_ID=sh.measure.android.gradle.gradle.plugin -MEASURE_PLUGIN_VERSION_NAME=0.5.0-SNAPSHOT +MEASURE_PLUGIN_VERSION_NAME=0.5.0 RELEASE_SIGNING_ENABLED = true \ No newline at end of file diff --git a/docs/android/README.md b/docs/android/README.md index 105886216..0862aae89 100644 --- a/docs/android/README.md +++ b/docs/android/README.md @@ -99,7 +99,7 @@ Add the following plugin to your project. ```kotlin plugins { - id("sh.measure.android.gradle") version "0.4.0" + id("sh.measure.android.gradle") version "0.5.0" } ``` @@ -107,7 +107,7 @@ or, use the following if you're using `build.gradle`. ```groovy plugins { - id 'sh.measure.android.gradle' version '0.4.0' + id 'sh.measure.android.gradle' version '0.5.0' } ```