Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

ParseTwitterUtils 1.9.1 #13

Merged
merged 1 commit into from
Nov 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log
All notable changes to this project will be documented in this file.

---

## [ParseTwitterUtils 1.9.1](https://github.com/ParsePlatform/ParseTwitterUtils-iOS/releases/tag/1.9.1) (11/17/2015)

#### New
- ParseTwitterUtils now supports Xcode 7.1+. #6

#### Improved
- Added safeguard assertion for initialization of PFTwitterUtils before Parse is initialized. #4
- Removed all custom nullability annotation macros. #8
- Improved localized strings generation. #2

#### Fixed
- Fixed potential warnings in PFOAuth1FlowDialog. #10

## [ParseTwitterUtils 1.9.0](https://github.com/ParsePlatform/ParseTwitterUtils-iOS/releases/tag/1.9.0) (10/08/2015)

Hello, open source!

#### Fixed
- Fixed initialization potentially blocking the main thread for a continuous amount of time.
- Fixed parameter URL Encoding when signing requests with Twitter.
6 changes: 3 additions & 3 deletions ParseTwitterUtils.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ParseTwitterUtils'
s.version = '1.9.0'
s.version = '1.9.1'
s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" }
s.homepage = 'https://www.parse.com/'
s.summary = 'Parse is a complete technology stack to power your app\'s backend.'
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.public_header_files = 'ParseTwitterUtils/*.h'
s.source_files = 'ParseTwitterUtils/**/*.{h,m}'
s.resources = 'Resources/en.lproj'

s.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
Expand All @@ -28,6 +28,6 @@ Pod::Spec.new do |s|
'Social'
s.libraries = 'z', 'sqlite3'

s.dependency 'Bolts/Tasks', '>= 1.3.0'
s.dependency 'Bolts/Tasks', '~> 1.5'
s.dependency 'Parse', '~> 1.9'
end
4 changes: 2 additions & 2 deletions Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>1.9.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand All @@ -22,7 +22,7 @@
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>1.9.0</string>
<string>1.9.1</string>
<key>MinimumOSVersion</key>
<string>6.0</string>
</dict>
Expand Down