From 89138719310efb4a58131e27d91e06e2b221926e Mon Sep 17 00:00:00 2001 From: Jordan Curd Date: Fri, 30 Jun 2017 14:35:15 -0400 Subject: [PATCH 1/2] Bump to 3.3.10 --- CHANGELOG.md | 3 +++ Classes/UserVoice.m | 2 +- README.md | 2 +- build.sh | 2 +- uservoice-iphone-sdk.podspec | 4 ++-- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a879ecd..9caa34b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## master ## +## 3.3.10 (2017-06-30) +* Fix a bug when including category when submitting a suggestion + ## 3.2.9 (2016-09-07) * Fix a crash caused by receiving a 429 rate limit response diff --git a/Classes/UserVoice.m b/Classes/UserVoice.m index 92c5e83e..1de25bfd 100755 --- a/Classes/UserVoice.m +++ b/Classes/UserVoice.m @@ -158,7 +158,7 @@ + (void)setDelegate:(id)delegate { } + (NSString *)version { - return @"3.2.9"; + return @"3.2.10"; } diff --git a/README.md b/README.md index f8bd37c6..a412de9e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,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.9](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.2.9) (updated 2016-09-07) +* Current release is iOS 8 compatible: [3.2.9](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.2.9) (updated 2017-06-30) * See [Releases](https://github.com/uservoice/uservoice-ios-sdk/releases) for release notes and previous versions Example apps: diff --git a/build.sh b/build.sh index ddc44805..eb6a2463 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/sh -DIST=dist/UserVoiceSDK-3.2.9 +DIST=dist/UserVoiceSDK-3.2.10 echo "==== Building for iOS devices ====" echo "" diff --git a/uservoice-iphone-sdk.podspec b/uservoice-iphone-sdk.podspec index 61a7113e..4a9df4be 100644 --- a/uservoice-iphone-sdk.podspec +++ b/uservoice-iphone-sdk.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| s.name = "uservoice-iphone-sdk" - s.version = "3.2.9" + s.version = "3.2.10" 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.9" } + s.source = { :git => "https://github.com/uservoice/uservoice-ios-sdk.git", :tag => "3.2.10" } s.source_files = 'Classes/*.{h,m}', 'Categories/*.{h,m}', 'Vendor/**/*.{c,h,m}', 'Include/*.h' s.resource_bundles = { "UserVoice" => "Resources/*" } s.frameworks = 'QuartzCore', 'SystemConfiguration' From 0f30dfe3294afd3f61b3944aa4eb8e97c7d1f60e Mon Sep 17 00:00:00 2001 From: Jordan Curd Date: Fri, 30 Jun 2017 15:47:10 -0400 Subject: [PATCH 2/2] Better changelog message --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9caa34b6..99e750a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## master ## ## 3.3.10 (2017-06-30) -* Fix a bug when including category when submitting a suggestion +* Fix a bug when submitting a suggestion with a category in non-English locales ## 3.2.9 (2016-09-07) * Fix a crash caused by receiving a 429 rate limit response