Skip to content

Commit

Permalink
Release version 0.6.0 (#63)
Browse files Browse the repository at this point in the history
* Debounce upload events to fix missing event when too many upload events calls repeatedly
  • Loading branch information
tung-vu-td authored Apr 22, 2021
1 parent c80a5cb commit 04cbaed
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand All @@ -26,7 +26,7 @@ If you use maven, add the following directives to your pom.xml
<dependency>
<groupId>com.treasuredata</groupId>
<artifactId>td-android-sdk</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/treasuredata/android/TreasureData.java
Original file line number Diff line number Diff line change
Expand Up @@ -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}$");
Expand Down

0 comments on commit 04cbaed

Please sign in to comment.