Skip to content

Commit 4661072

Browse files
author
Julian Locke
committed
10.0.0 release
1 parent 5617441 commit 4661072

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dropbox for Swift
22

3-
## Version 10.0.0 beta differs greatly from previous versions of the SDK. See [Changes in version 10.0.0](#changes-in-version-1000) and, if needed, [Migrating from dropbox-sdk-obj-c](#migrating-from-dropbox-sdk-obj-c).
3+
## Version 10.0.0 differs greatly from previous versions of the SDK. See [Changes in version 10.0.0](#changes-in-version-1000) and, if needed, [Migrating from dropbox-sdk-obj-c](#migrating-from-dropbox-sdk-obj-c).
44

55
The Official Dropbox Swift SDK for integrating with Dropbox [API v2](https://www.dropbox.com/developers/documentation/http/documentation) on iOS or macOS.
66

@@ -962,7 +962,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o
962962
use_frameworks!
963963

964964
target '<YOUR_PROJECT_NAME>' do
965-
pod 'SwiftyDropboxObjC', '~> 10.0.0-beta.3'
965+
pod 'SwiftyDropboxObjC', '~> 10.0.0'
966966
end
967967
```
968968

@@ -1109,7 +1109,7 @@ These additional features are the greatest differences, but even simple upgrades
11091109

11101110
For notes on Objective-C support see [Migrating from dropbox-sdk-obj-c](#migrating-from-dropbox-sdk-obj-c)
11111111

1112-
The SDK's background networking support simplifies the reconnection of completion handlers to URLSession tasks. See [`TestSwiftyDropbox/DebugBackgroundSessionViewModel`](https://github.com/dropbox/SwiftyDropbox/tree/branch_10.0.0-beta/TestSwiftyDropbox/TestSwiftyDropbox_SwiftUI/iOS) for code that exercises various background networking scenarios. See [`TestSwiftDropbox/ActionRequestHandler`](https://github.com/dropbox/SwiftyDropbox/blob/branch_10.0.0-beta/TestSwiftyDropbox/TestSwiftyDropbox_ActionExtension/ActionRequestHandler.swift) for usage from an app extension.
1112+
The SDK's background networking support simplifies the reconnection of completion handlers to URLSession tasks. See [`TestSwiftyDropbox/DebugBackgroundSessionViewModel`](https://github.com/dropbox/SwiftyDropbox/tree/master/TestSwiftyDropbox/TestSwiftyDropbox_SwiftUI/iOS) for code that exercises various background networking scenarios. See [`TestSwiftDropbox/ActionRequestHandler`](https://github.com/dropbox/SwiftyDropbox/blob/master/TestSwiftyDropbox/TestSwiftyDropbox_ActionExtension/ActionRequestHandler.swift) for usage from an app extension.
11131113

11141114
### Testing Support
11151115

Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>10.0.0-beta.3</string>
18+
<string>10.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>10.0.0-beta.3</string>
18+
<string>10.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
import Foundation
66

77
public struct Constants {
8-
public static let versionSDK = "10.0.0-beta.3"
8+
public static let versionSDK = "10.0.0"
99
static let kCSRFKey = "kCSRFKeySwiftSDK"
1010
}

Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>10.0.0-beta.3</string>
18+
<string>10.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>10.0.0-beta.3</string>
18+
<string>10.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

SwiftyDropbox.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftyDropbox'
3-
s.version = '10.0.0-beta.3'
3+
s.version = '10.0.0'
44
s.summary = 'Dropbox Swift SDK for API v2'
55
s.homepage = 'https://dropbox.com/developers/'
66
s.license = 'MIT'

SwiftyDropboxObjC.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftyDropboxObjC'
3-
s.version = '10.0.0-beta.3'
3+
s.version = '10.0.0'
44
s.summary = 'Objective-C Wrapper for Dropbox Swift SDK for API v2'
55
s.homepage = 'https://dropbox.com/developers/'
66
s.license = 'MIT'
@@ -20,5 +20,5 @@ Pod::Spec.new do |s|
2020
s.osx.frameworks = 'AppKit', 'WebKit', 'SystemConfiguration', 'Foundation'
2121
s.ios.frameworks = 'UIKit', 'WebKit', 'SystemConfiguration', 'Foundation'
2222

23-
s.dependency 'SwiftyDropbox', '~> 10.0.0-beta.3'
23+
s.dependency 'SwiftyDropbox', '~> 10.0.0'
2424
end

0 commit comments

Comments
 (0)