Skip to content

Commit

Permalink
Bump Version 8.1.0
Browse files Browse the repository at this point in the history
Summary:
ran:
`sh scripts/run.sh bump-version 8.1.0`
Manually updated CHANGELOG.md.

Reviewed By: YOUDAN, KylinChang

Differential Revision: D24506932

fbshipit-source-id: 9ed6d6b58a35d8dee299462847628c6400325b45
  • Loading branch information
joesus authored and facebook-github-bot committed Oct 27, 2020
1 parent 9975424 commit aa4a454
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 10 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Important

[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v8.0.0...HEAD)
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v8.1.0...HEAD)

## 8.1.0

### Added
- Introduced `AppLinkResolverRequestBuilder` for use in cleaning up and adding tests around `AppLinkResolver`

### Changed
- Removed version checks for iOS 9 since it’s the default version now.
- Refactored `AppLinkResolver` to use a request builder
- Refactored and added tests around `FBSDKProfile` and `FBSDKProfilePictureView`
- Updated `FBSDKSettings` to use `ADIdentifierManager` for tracking status
- Removes usages of deprecated `UI_USER_INTERFACE_IDIOM()`

### Fixed
- Issues with Swift names causing warnings - #1522
- Fixes bugs related to crash handling - #1444
- Fixes Carthage distribution to include the correct binary slices when building on Xcode12 - #1484
- Fixes duplicate symbol for `FBSDKVideoUploader` bug #1512
- GET requests now default to having a 'fields' parameter to avoid warnings about missing fields #1403
- Fixes Multithreading issue related to crash reporting - #1550

[2020-10-23](https://github.com/facebook/facebook-ios-sdk/releases/tag/v8.1.0) |
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v8.0.0...v8.1.0)

## 8.0.0

Expand Down
2 changes: 1 addition & 1 deletion Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// The versions for FBSDK and Messenger SDK.
FBSDK_PROJECT_VERSION=8.0.0
FBSDK_PROJECT_VERSION=8.1.0
MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK

2 changes: 1 addition & 1 deletion FBSDKCoreKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKCoreKit'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@

#endif

#define FBSDK_VERSION_STRING @"8.0.0"
#define FBSDK_VERSION_STRING @"8.1.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v8.0"
2 changes: 1 addition & 1 deletion FBSDKGamingServicesKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKGamingServicesKit'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Gaming Services'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKLoginKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKLoginKit'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform with features like Login, Share and Message Dialog, App Links, and Graph API'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKShareKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKShareKit'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform Sharing Features'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKTVOSKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKTVOSKit'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for tvOS to access Facebook Platform with features like Login and Graph API.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FacebookSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FacebookSDK'
s.version = '8.0.0'
s.version = '8.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define FBSDK_MAX_CRASH_LOGS 5
#define FBSDK_CRASH_PATH_NAME @"instrument"
#ifndef FBSDK_VERSION_STRING
#define FBSDK_VERSION_STRING @"8.0.0"
#define FBSDK_VERSION_STRING @"8.1.0"
#endif

static const int fatalSignals[] =
Expand Down

0 comments on commit aa4a454

Please sign in to comment.