Skip to content

Commit

Permalink
Release 0.5.0 (#60)
Browse files Browse the repository at this point in the history
* Support Android TV
  • Loading branch information
tung-vu-td authored Jan 11, 2021
1 parent edf99c6 commit 9a2813d
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.5.0
_2021_01_08_

* Add support for Android TV

## Version 0.4.0
_2020_11_06_

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.4.0'
implementation 'com.treasuredata:td-android-sdk:0.5.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.4.0</version>
<version>0.5.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.4.0'
version = '0.5.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.4.0";
private static final String VERSION = "0.5.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 9a2813d

Please sign in to comment.