diff --git a/README.md b/README.md index c56d3490..3b092fa1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The Official Dropbox Swift SDK for integrating with Dropbox [API v2](https://www.dropbox.com/developers/documentation/http/documentation) on iOS or macOS. -Full documentation [here](http://dropbox.github.io/SwiftyDropbox/api-docs/10.0.0-beta.2/). +Full documentation [here](http://dropbox.github.io/SwiftyDropbox/api-docs/10.0.0-beta.3/). --- @@ -952,7 +952,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o use_frameworks! target '' do - pod 'SwiftyDropboxObjC', '~> 10.0.0-beta.2' + pod 'SwiftyDropboxObjC', '~> 10.0.0-beta.3' end ``` diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist index b5d37af9..5cad0e33 100644 --- a/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist +++ b/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0-beta.2 + 10.0.0-beta.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist index 5a4ce271..3e84d4cc 100644 --- a/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist +++ b/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0-beta.2 + 10.0.0-beta.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift b/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift index beaa93de..e497d38c 100644 --- a/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift +++ b/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift @@ -5,6 +5,6 @@ import Foundation public struct Constants { - public static let versionSDK = "10.0.0-beta.2" + public static let versionSDK = "10.0.0-beta.3" static let kCSRFKey = "kCSRFKeySwiftSDK" } diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist index b5d37af9..5cad0e33 100644 --- a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist +++ b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0-beta.2 + 10.0.0-beta.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist index 5a4ce271..3e84d4cc 100644 --- a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist +++ b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0-beta.2 + 10.0.0-beta.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/SwiftyDropbox.podspec b/SwiftyDropbox.podspec index 3fe5bb36..c9dc79f9 100644 --- a/SwiftyDropbox.podspec +++ b/SwiftyDropbox.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropbox' - s.version = '10.0.0-beta.2' + s.version = '10.0.0-beta.3' s.summary = 'Dropbox Swift SDK for API v2' s.homepage = 'https://dropbox.com/developers/' s.license = 'MIT' diff --git a/SwiftyDropboxObjC.podspec b/SwiftyDropboxObjC.podspec index 9c4cf723..6fc4d785 100644 --- a/SwiftyDropboxObjC.podspec +++ b/SwiftyDropboxObjC.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropboxObjC' - s.version = '10.0.0-beta.2' + s.version = '10.0.0-beta.3' s.summary = 'Objective-C Wrapper for Dropbox Swift SDK for API v2' s.homepage = 'https://dropbox.com/developers/' s.license = 'MIT' @@ -20,5 +20,5 @@ Pod::Spec.new do |s| s.osx.frameworks = 'AppKit', 'WebKit', 'SystemConfiguration', 'Foundation' s.ios.frameworks = 'UIKit', 'WebKit', 'SystemConfiguration', 'Foundation' - s.dependency 'SwiftyDropbox', '~> 10.0.0-beta.2' + s.dependency 'SwiftyDropbox', '~> 10.0.0-beta.3' end