Skip to content
This repository has been archived by the owner on Jul 25, 2019. It is now read-only.

Commit

Permalink
Bump to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
austintaylor committed Jan 12, 2015
1 parent cc13773 commit 5e07cdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## master

## 1.2.2

* Fix a regression that broke article browsing

## 1.2.1

* Fix Session to be a real singleton. Thanks to everyone who reported this. It was resulting in some random crashes.
Expand Down
2 changes: 1 addition & 1 deletion UserVoiceSDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ uploadArchives {
repositories.mavenDeployer {
pom.groupId = 'com.uservoice'
pom.artifactId = 'uservoice-android-sdk'
pom.version = '1.2.1'
pom.version = '1.2.2'
// Add other pom properties here if you want (developer details / licenses)
repository(url: "file:///Users/austin/code/")
}
Expand Down
2 changes: 1 addition & 1 deletion UserVoiceSDK/src/com/uservoice/uservoicesdk/UserVoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public static void track(String event) {
}

public static String getVersion() {
return "1.2.1";
return "1.2.2";
}
}

0 comments on commit 5e07cdb

Please sign in to comment.