Skip to content

Commit

Permalink
Release 0.4.0 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td authored Nov 9, 2020
1 parent 43ab98f commit 79b27c8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## Version 0.4.0
_2020_11_06_

* Add Default values feature
* Add resetSessionId API
* Update Keen client to fix mkdir issue

## Version 0.3.0
_2019_10_14_

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.3.0'
implementation 'com.treasuredata:td-android-sdk:0.4.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.3.0</version>
<version>0.4.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.3.0'
version = '0.4.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 @@ -31,7 +31,7 @@

public class TreasureData implements CDPClient {
private static final String TAG = TreasureData.class.getSimpleName();
private static final String VERSION = "0.3.0";
private static final String VERSION = "0.4.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 79b27c8

Please sign in to comment.