diff --git a/CHANGELOG.md b/CHANGELOG.md index 0db1b7c..ba065d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## Version 0.6.0 +_2021_04_22_ + +* Debounce upload events to fix missing event when too many upload events calls repeatedly + ## Version 0.5.0 _2021_01_08_ diff --git a/README.md b/README.md index 0233f66..350381b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ If you use gradle, add the following dependency to `dependencies` directive in t ``` dependencies { - implementation 'com.treasuredata:td-android-sdk:0.5.0' + implementation 'com.treasuredata:td-android-sdk:0.6.0' } ``` @@ -26,7 +26,7 @@ If you use maven, add the following directives to your pom.xml com.treasuredata td-android-sdk - 0.5.0 + 0.6.0 ``` diff --git a/build.gradle b/build.gradle index a240994..8409dfe 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group = 'com.treasuredata' -version = '0.5.0' +version = '0.6.0' description = 'Android SDK for Treasure Data Cloud' sourceCompatibility = '1.7' diff --git a/src/main/java/com/treasuredata/android/TreasureData.java b/src/main/java/com/treasuredata/android/TreasureData.java index bdbbfee..d607d3a 100644 --- a/src/main/java/com/treasuredata/android/TreasureData.java +++ b/src/main/java/com/treasuredata/android/TreasureData.java @@ -35,7 +35,7 @@ public class TreasureData implements CDPClient { private static final String TAG = TreasureData.class.getSimpleName(); - private static final String VERSION = "0.5.0"; + private static final String VERSION = "0.6.0"; private static final String LABEL_ADD_EVENT = "addEvent"; private static final String LABEL_UPLOAD_EVENTS = "uploadEvents"; private static final Pattern DATABASE_NAME_PATTERN = Pattern.compile("^[0-9a-z_]{3,255}$");