diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c118c4..3b1745d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ ## master +## 1.0.1 + * Add portuguese translation * fix a bug where UserVoice.init() would show an error message to the user if the server was unreachable -* Prevent duplicat ideas or tickets if the user taps submit multiple times +* Prevent duplicated ideas or tickets if the user taps submit multiple times * Add email validation +* Force soft keyboard to hide when tapping Next in form views ## 1.0.0 diff --git a/UserVoiceSDK/src/com/uservoice/uservoicesdk/UserVoice.java b/UserVoiceSDK/src/com/uservoice/uservoicesdk/UserVoice.java index a4a321a..6424430 100644 --- a/UserVoiceSDK/src/com/uservoice/uservoicesdk/UserVoice.java +++ b/UserVoiceSDK/src/com/uservoice/uservoicesdk/UserVoice.java @@ -70,6 +70,6 @@ public static void track(String event) { } public static String getVersion() { - return "1.0.0"; + return "1.0.1"; } }