Skip to content

Commit fc39f46

Browse files
committed
no message
2 parents 14f686f + 2e4242c commit fc39f46

File tree

22 files changed

+56
-42
lines changed

22 files changed

+56
-42
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# Parse-SDK-iOS-OSX Changelog
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.19.1...master)
4+
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.19.2...master)
55
* _Contributing to this repo? Add info about your change here to be included in next release_
66

7+
### 1.19.2
8+
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.19.1...1.19.2)
9+
10+
__Improvements__
11+
- Updates Facebook SDK to 9.x ([#1599](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1599)), thanks to [kmaker](https://github.com/kmaker).
12+
13+
__Fixes__
14+
- Crash in Twitter login flow ([#1566](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1567)), thanks to [dhana](https://github.com/dsp1589).
15+
716
### 1.19.1
817
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.19.0...1.19.1)
918

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "BoltsFramework/Bolts-ObjC" "1.9.1"
2-
github "facebook/facebook-ios-sdk" "v8.2.0"
2+
github "facebook/facebook-ios-sdk" "v9.0.0"

Parse.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Parse'
3-
s.version = '1.19.1'
3+
s.version = '1.19.2'
44
s.license = { :type => 'BSD', :file => 'LICENSE' }
55
s.homepage = 'http://parseplatform.org/'
66
s.summary = 'A library that gives you access to the powerful Parse cloud platform from your iOS/OS X/watchOS/tvOS app.'
@@ -104,7 +104,7 @@ Pod::Spec.new do |s|
104104

105105
s.dependency 'Parse/Core'
106106
s.dependency 'Bolts/Tasks', '~> 1.9.1'
107-
s.dependency 'FBSDKLoginKit', '~> 8.x'
107+
s.dependency 'FBSDKLoginKit', '~> 9.x'
108108
end
109109

110110
s.subspec 'FacebookUtils-tvOS' do |s|
@@ -126,8 +126,8 @@ Pod::Spec.new do |s|
126126

127127
s.dependency 'Parse/Core'
128128
s.dependency 'Bolts/Tasks', '~> 1.9.1'
129-
s.dependency 'FBSDKTVOSKit', '~> 8.x'
130-
s.dependency 'FBSDKShareKit', '~> 8.x'
129+
s.dependency 'FBSDKTVOSKit', '~> 9.x'
130+
s.dependency 'FBSDKShareKit', '~> 9.x'
131131
end
132132

133133
s.subspec 'TwitterUtils' do |s|

Parse/Parse/PFConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#pragma mark - SDK Version
1414
///--------------------------------------
1515

16-
#define PARSE_VERSION @"1.19.1"
16+
#define PARSE_VERSION @"1.19.2"
1717

1818
///--------------------------------------
1919
#pragma mark - Platform

Parse/Parse/Resources/Parse-OSX.Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.19.1</string>
16+
<string>1.19.2</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.19.1</string>
20+
<string>1.19.2</string>
2121
</dict>
2222
</plist>

Parse/Parse/Resources/Parse-iOS.Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.19.1</string>
16+
<string>1.19.2</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleSupportedPlatforms</key>
2020
<array>
2121
<string>iPhoneOS</string>
2222
</array>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.1</string>
24+
<string>1.19.2</string>
2525
<key>MinimumOSVersion</key>
2626
<string>9.0</string>
2727
</dict>

Parse/Parse/Resources/Parse-tvOS.Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.19.1</string>
18+
<string>1.19.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.1</string>
22+
<string>1.19.2</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Parse/Parse/Resources/Parse-watchOS.Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.19.1</string>
18+
<string>1.19.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.1</string>
22+
<string>1.19.2</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

ParseFacebookUtils/Resources/Info-iOS.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.19.1</string>
16+
<string>1.19.2</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleSupportedPlatforms</key>
2020
<array>
2121
<string>iPhoneOS</string>
2222
</array>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.1</string>
24+
<string>1.19.2</string>
2525
<key>MinimumOSVersion</key>
2626
<string>9.0</string>
2727
</dict>
28-
</plist>
28+
</plist>

ParseFacebookUtils/Resources/Info-tvOS.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.19.1</string>
16+
<string>1.19.2</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.19.1</string>
20+
<string>1.19.2</string>
2121
</dict>
2222
</plist>

0 commit comments

Comments
 (0)