diff --git a/README.md b/README.md index ce3db1d0..1200285e 100644 --- a/README.md +++ b/README.md @@ -944,7 +944,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o use_frameworks! target '' do - pod 'SwiftyDropboxObjC', '~> 10.0.5' + pod 'SwiftyDropboxObjC', '~> 10.0.6' end ``` diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist index 271dde02..9ed222c3 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.5 + 10.0.6 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist index bb959e11..273871f2 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.5 + 10.0.6 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift b/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift index a41ec0fa..57ecc3b5 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.5" + public static let versionSDK = "10.0.6" static let kCSRFKey = "kCSRFKeySwiftSDK" } diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist index 271dde02..9ed222c3 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.5 + 10.0.6 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist index bb959e11..273871f2 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.5 + 10.0.6 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/SwiftyDropbox.podspec b/SwiftyDropbox.podspec index ba562d60..25d249a9 100644 --- a/SwiftyDropbox.podspec +++ b/SwiftyDropbox.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropbox' - s.version = '10.0.5' + s.version = '10.0.6' 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 1e41cd8d..887c56d5 100644 --- a/SwiftyDropboxObjC.podspec +++ b/SwiftyDropboxObjC.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropboxObjC' - s.version = '10.0.5' + s.version = '10.0.6' s.summary = 'Objective-C Wrapper for Dropbox Swift SDK for API v2' s.homepage = 'https://dropbox.com/developers/' s.license = 'MIT' @@ -24,5 +24,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.5' + s.dependency 'SwiftyDropbox', '~> 10.0.6' end