diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e4e013a8..98df5fa0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ -# 2016-06-24 - 3.1.2 +# 2016-07-13 - 3.2.0 + +#### Improvements + +* Added a new "NPS" question type for surveys. #### Bugs Fixed -* Fix Message Center composing bar exception thrown when the animation was in play after the fragment was detached +* Fixed Message Center composing bar exception thrown when the animation was in play after the fragment was detached. +* Fixed Message Center exception caused by requesting focus on a nulled EditText. +* Moved database calls off the UI thread. # 2016-06-20 - 3.1.1 diff --git a/README.md b/README.md index a1bccc44f..b7156a53c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ use your app, to talk to them at the right time, and in the right way. ##### Version history is tracked [here](CHANGELOG.md) -##### Binary releases are hosted for Maven [here](http://search.maven.org/#artifactdetails|com.apptentive|apptentive-android|3.1.2|aar) +##### Binary releases are hosted for Maven [here](http://search.maven.org/#artifactdetails|com.apptentive|apptentive-android|3.2.0|aar) #### Reporting Bugs We encourage you to help us find and fix bugs. If you find a bug, please fill in the contributor agreement, then open a [github issue](https://github.com/apptentive/apptentive-android/issues?direction=desc&sort=created&state=open). diff --git a/apptentive/src/main/java/com/apptentive/android/sdk/util/Constants.java b/apptentive/src/main/java/com/apptentive/android/sdk/util/Constants.java index 32f8e9a62..4b00dbe46 100644 --- a/apptentive/src/main/java/com/apptentive/android/sdk/util/Constants.java +++ b/apptentive/src/main/java/com/apptentive/android/sdk/util/Constants.java @@ -6,12 +6,9 @@ package com.apptentive.android.sdk.util; -/** - * @author Sky Kelsey - */ public class Constants { - public static final String APPTENTIVE_SDK_VERSION = "3.1.2"; + public static final String APPTENTIVE_SDK_VERSION = "3.2.0"; public static final int REQUEST_CODE_PHOTO_FROM_SYSTEM_PICKER = 10;