Skip to content

Commit 9d1b958

Browse files
drdazmmanmtrezzaTomWFox
authored
Release 1.19.1 (#1563)
* Updates version numbers * Updates changelog * Apple user details (#1551) * Adds callback to PFLoginViewController for received Apple credentials object * Adds user to Apple credential callback * Fixes target membership * Cleans up target membership * Removes CCI Carthage build dependency on iOS. iOS tests are still temperamental. * Removes @import * Allow Parse SDK to be built for maccatalyst (#1543) * allow Parse SDK to be built for maccatalyst * Updates version numbers * Updates changelog * changed minimumosversion to 8.0 (#1521) * changed minimumosversion to 8.0 closes #1515 * Updates version numbers * Updates changelog * Update changelog * nits Co-authored-by: Martin Man <[email protected]> Co-authored-by: Manuel <[email protected]> Co-authored-by: Tom Fox <[email protected]>
1 parent 80fbef3 commit 9d1b958

File tree

19 files changed

+51
-39
lines changed

19 files changed

+51
-39
lines changed

CHANGELOG.md

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
11
# Parse-SDK-iOS-OSX Changelog
22

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

7+
### 1.19.1
8+
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.19.0...1.19.1)
9+
10+
__Improvements__
11+
- Allow SDK to build for Mac Catalyst ([#1543](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1543)), thanks to [Martin Mann](https://github.com/mman).
12+
13+
__Fixes__
14+
- Pass user details from Sign In With Apple to user ([#1551](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1551)), thanks to [Darren Black](https://github.com/drdaz).
15+
- Bolts compilation error in Xcode 12 ([#1548](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1548)), thanks to [Derek Lee](https://github.com/derekleerock).
16+
- App Store submission failed for MinimumOSVersion ([#1515](https://github.com/parse-community/Parse-SDK-iOS-OSX/issues/1515)), thanks to [Manuel Trezza](https://github.com/mtrezza).
17+
718
### 1.19.0
819
[Full Changelog](https://github.com/parse-community/Parse-SDK-iOS-OSX/compare/1.18.0...1.19.0)
920

1021
__New features__
11-
- Added Sign In With Apple support to ParseUI [#1475](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1475), thanks to [Darren Black](https://github.com/drdaz). Transparent icons thanks to [Donald Ness](https://github.com/programmarchy)
22+
- Added Sign In With Apple support to ParseUI ([#1475](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1475)), thanks to [Darren Black](https://github.com/drdaz).
23+
- Transparent icons ([#1530](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1530)), thanks to [Donald Ness](https://github.com/programmarchy).
1224

1325
__Improvements__
14-
- Updated Facebook SDK to 6.x [#1504](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1504), thanks to [Markus Winkler](https://github.com/markuswinkler)
26+
- Updated Facebook SDK to 6.x ([#1504](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1504)), thanks to [Markus Winkler](https://github.com/markuswinkler).
1527

1628
__Fixes__
17-
- Removes deprecated UIWebView usage [#1511](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1511), thanks to [Nathan Kellert](https://github.com/parse-community/Parse-SDK-iOS-OSX/commits?author=noobs2ninjas)
18-
- Fixes building with Xcode 12 [#1527](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1527), thanks to [Steffen Matthischke](https://github.com/HeEAaD)
29+
- Removes deprecated UIWebView usage ([#1511](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1511)), thanks to [Nathan Kellert](https://github.com/parse-community/Parse-SDK-iOS-OSX/commits?author=noobs2ninjas).
30+
- Fixes building with Xcode 12 ([#1527](https://github.com/parse-community/Parse-SDK-iOS-OSX/pull/1527)), thanks to [Steffen Matthischke](https://github.com/HeEAaD).
1931

2032

2133
### 1.18.0

Parse.podspec

+1-1
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.0'
3+
s.version = '1.19.1'
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.'

Parse/Parse/PFConstants.h

+1-1
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.0"
16+
#define PARSE_VERSION @"1.19.1"
1717

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

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

+2-2
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.0</string>
16+
<string>1.19.1</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
</dict>
2222
</plist>

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

+2-2
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.0</string>
16+
<string>1.19.1</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.0</string>
24+
<string>1.19.1</string>
2525
<key>MinimumOSVersion</key>
2626
<string>8.0</string>
2727
</dict>

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

+2-2
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.0</string>
18+
<string>1.19.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

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

+2-2
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.0</string>
18+
<string>1.19.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

ParseFacebookUtils/Resources/Info-iOS.plist

+2-2
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.0</string>
16+
<string>1.19.1</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.0</string>
24+
<string>1.19.1</string>
2525
<key>MinimumOSVersion</key>
2626
<string>8.0</string>
2727
</dict>

ParseFacebookUtils/Resources/Info-tvOS.plist

+2-2
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.0</string>
16+
<string>1.19.1</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
</dict>
2222
</plist>

ParseStarterProject/OSX/ParseOSXStarterProject-Swift/Resources/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.0</string>
24+
<string>1.19.1</string>
2525
<key>LSMinimumSystemVersion</key>
2626
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2727
<key>NSMainNibFile</key>

ParseStarterProject/OSX/ParseOSXStarterProject/Resources/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.0</string>
24+
<string>1.19.1</string>
2525
<key>LSMinimumSystemVersion</key>
2626
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
2727
<key>NSMainNibFile</key>

ParseStarterProject/iOS/ParseStarterProject-Swift/Resources/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.19.0</string>
18+
<string>1.19.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UILaunchStoryboardName</key>

ParseStarterProject/iOS/ParseStarterProject/Resources/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleVersion</key>
26-
<string>1.19.0</string>
26+
<string>1.19.1</string>
2727
<key>LSRequiresIPhoneOS</key>
2828
<true/>
2929
<key>NSMainNibFile</key>

ParseStarterProject/tvOS/ParseStarterProject-Swift/ParseStarter/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.19.0</string>
18+
<string>1.19.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UIMainStoryboardFile</key>

ParseStarterProject/watchOS/ParseStarterProject-Swift/ParseStarter Extension/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>XPC!</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.0</string>
24+
<string>1.19.1</string>
2525
<key>NSExtension</key>
2626
<dict>
2727
<key>NSExtensionAttributes</key>

ParseStarterProject/watchOS/ParseStarterProject-Swift/ParseStarter/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.19.0</string>
20+
<string>1.19.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1.19.0</string>
24+
<string>1.19.1</string>
2525
<key>UISupportedInterfaceOrientations</key>
2626
<array>
2727
<string>UIInterfaceOrientationPortrait</string>

ParseStarterProject/watchOS/ParseStarterProject-Swift/Resources/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.19.0</string>
18+
<string>1.19.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.19.0</string>
22+
<string>1.19.1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UIMainStoryboardFile</key>

ParseTwitterUtils/Resources/Info.plist

+2-2
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.0</string>
16+
<string>1.19.1</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.0</string>
24+
<string>1.19.1</string>
2525
<key>MinimumOSVersion</key>
2626
<string>8.0</string>
2727
</dict>

ParseUI/Resources/Info.plist

+2-2
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.0</string>
16+
<string>1.19.1</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.0</string>
24+
<string>1.19.1</string>
2525
<key>MinimumOSVersion</key>
2626
<string>8.0</string>
2727
</dict>

0 commit comments

Comments
 (0)