From 6daf7ff5cdf454ddfaeba8eb4ee5577b45832c33 Mon Sep 17 00:00:00 2001 From: Abhay Sood Date: Mon, 19 Aug 2024 17:33:23 +0530 Subject: [PATCH] chore(android): prepare sdk release 0.5.0 --- android/CHANGELOG.md | 11 +++++++++++ android/gradle.properties | 2 +- docs/android/README.md | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/android/CHANGELOG.md b/android/CHANGELOG.md index 8759a4941..723191197 100644 --- a/android/CHANGELOG.md +++ b/android/CHANGELOG.md @@ -1,5 +1,16 @@ # measure-android +## 0.5.0 +#### Features +* Allow configuring http urls for which to enable collection of http events. This configuration is simpler to setup +than finding out all URLs to block by @abhaysood in https://github.com/measure-sh/measure/pull/1020 + +#### Fixes +* fix(android): gracefully handle session and event insertion failures by @abhaysood in https://github.com/measure-sh/measure/pull/1008 +* fix(android): overflow due to incorrect data type for time by @abhaysood in https://github.com/measure-sh/measure/pull/1014 + +**Full Changelog**: https://github.com/measure-sh/measure/compare/android-v0.4.0...0.5.0 + ## 0.4.0 #### Features * Add ability to turn on logs for the SDK, logs are disabled by default by @abhaysood in https://github.com/measure-sh/measure/pull/925 diff --git a/android/gradle.properties b/android/gradle.properties index 57a63565d..2e3979319 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -15,6 +15,6 @@ kotlin.code.style=official GROUP=sh.measure MEASURE_ARTIFACT_ID=measure-android -MEASURE_VERSION_NAME=0.5.0-SNAPSHOT +MEASURE_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 8127f6587..105886216 100644 --- a/docs/android/README.md +++ b/docs/android/README.md @@ -157,13 +157,13 @@ measure { Add the following to your app's `build.gradle.kts`file. ```kotlin -implementation("sh.measure:measure-android:0.4.0") +implementation("sh.measure:measure-android:0.5.0") ``` or, add the following to your app's `build.gradle`file. ```groovy -implementation 'sh.measure:measure-android:0.4.0' +implementation 'sh.measure:measure-android:0.5.0' ``` ### 4. Initialize the SDK