Skip to content

Commit

Permalink
Release Liquid v2.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Leitão <rleitao@onliquid.com>
  • Loading branch information
letz committed Mar 1, 2016
1 parent ca0afff commit c71175a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Liquid Android SDK Change Log

## 2.0.1: Bugfix Inapp Messages deeplink

* **[bugfix]** Inapp Messages deeplink.

<br>

## 2.0.0-rc5: Update GCM handlers & bugfixing

* **[enhancement]** Update GCM handler.
* **[bugix]** NPE when no inapp messages.
* **[bugfix]** NPE when no inapp messages.
* **[feature]** declare on your manifest the push notification icon.
* **[change]** Drop sessions (controlled in Liquid frontoffice).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To integrate Liquid in your app, just follow these simple steps below.
// build.gradle file
dependencies {
// Your Dependencies
compile 'io.lqd:liquid-android:2.0.0@aar'
compile 'io.lqd:liquid-android:2.0.1@aar'
}
```

Expand All @@ -30,7 +30,7 @@ dependencies {
<dependency>
<groupId>io.lqd</groupId>
<artifactId>liquid-android</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion liquid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group = io.lqd
version = 2.0.0
version = 2.0.1
2 changes: 1 addition & 1 deletion liquid/src/main/java/io/lqd/sdk/Liquid.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class Liquid {

protected static final String TAG_LIQUID = "LIQUID";

public static final String LIQUID_VERSION = "2.0.0";
public static final String LIQUID_VERSION = "2.0.1";
private static final int LIQUID_DEFAULT_SESSION_TIMEOUT = 30;

private int mSessionTimeout;
Expand Down

0 comments on commit c71175a

Please sign in to comment.