Skip to content

Commit

Permalink
chore(android): prepare gradle plugin release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abhaysood committed Aug 19, 2024
1 parent 6189825 commit 3b3d7fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion android/measure-android-gradle/gradle.properties
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions docs/android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ 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"
}
```

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'
}
```

Expand Down

0 comments on commit 3b3d7fc

Please sign in to comment.