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

Commit

Permalink
Bump to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
austintaylor committed Sep 30, 2014
1 parent 00ec38b commit 1763508
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## master ##

## 3.2.1 (2014-09-30) ##

* Fix issue where comments would not appear in the comments list after being posted
* Fix crash related to instant answer results that are displayed by rank
* Fix a rotation-related visual artifact that some people experienced on sdk launch
* Unescape html entities in forum names
* Fix missing "more" text on iOS 8

## 3.2.0 (2014-09-03) ##

Expand Down
2 changes: 1 addition & 1 deletion Classes/UserVoice.m
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ + (void)setDelegate:(id<UVDelegate>)delegate {
}

+ (NSString *)version {
return @"3.2.0";
return @"3.2.1";
}


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The UserVoice iOS SDK allows you to integrate a native UserVoice experience dire
To get started, you will need to have a free UserVoice account to connect to. Go to [uservoice.com/mobile/](https://uservoice.com/mobile/) to sign up for free.

Binary builds of the SDK are available for download:
* Current release is iOS 8 compatible: [3.2.0](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.2.0) (updated 2014-09-03)
* Current release is iOS 8 compatible: [3.2.1](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.2.1) (updated 2014-09-30)
* See [Releases](https://github.com/uservoice/uservoice-ios-sdk/releases) for release notes and previous versions

Example apps:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

DIST=dist/UserVoiceSDK-3.2.0
DIST=dist/UserVoiceSDK-3.2.1

echo "==== Building for iOS devices ===="
echo ""
Expand Down
4 changes: 2 additions & 2 deletions uservoice-iphone-sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = "uservoice-iphone-sdk"
s.version = "3.2.0"
s.version = "3.2.1"
s.summary = "UserVoice iOS SDK for iPhone and iPad apps."
s.description = "UserVoice for iOS allows you to embed UserVoice directly in your iPhone or iPad app."
s.homepage = "http://www.uservoice.com/mobile"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.md' }
s.author = 'UserVoice'
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/uservoice/uservoice-ios-sdk.git", :tag => "3.2.0" }
s.source = { :git => "https://github.com/uservoice/uservoice-ios-sdk.git", :tag => "3.2.1" }
s.source_files = 'Classes/*.{h,m}', 'Categories/*.{h,m}', 'Vendor/**/*.{c,h,m}', 'Include/*.h'
s.resource_bundles = { "UserVoice" => "Resources/*" }
s.frameworks = 'QuartzCore', 'SystemConfiguration'
Expand Down

0 comments on commit 1763508

Please sign in to comment.