diff --git a/README.md b/README.md index 34af6c9c..44a434a5 100644 --- a/README.md +++ b/README.md @@ -952,7 +952,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o use_frameworks! target '' do - pod 'SwiftyDropboxObjC', '~> 10.2.3' + pod 'SwiftyDropboxObjC', '~> 10.2.4' end ``` diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist index a1b9e911..284d2eb5 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.2.3 + 10.2.4 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropbox/Platform/SwiftyDropbox_macOS/Info.plist index a277332c..3f36100b 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.2.3 + 10.2.4 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift b/Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift index b79592b7..891eac7b 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.2.3" + public static let versionSDK = "10.2.4" static let kCSRFKey = "kCSRFKeySwiftSDK" } diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_iOS/Info.plist index a1b9e911..284d2eb5 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.2.3 + 10.2.4 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist b/Source/SwiftyDropboxObjC/Platform/SwiftyDropbox_macOS/Info.plist index a277332c..3f36100b 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.2.3 + 10.2.4 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/SwiftyDropbox.podspec b/SwiftyDropbox.podspec index a1e6fa2e..0ca6d122 100644 --- a/SwiftyDropbox.podspec +++ b/SwiftyDropbox.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropbox' - s.version = '10.2.3' + s.version = '10.2.4' 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 55dd603b..b7701745 100644 --- a/SwiftyDropboxObjc.podspec +++ b/SwiftyDropboxObjc.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyDropboxObjC' - s.version = '10.2.3' + s.version = '10.2.4' 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.2.3' + s.dependency 'SwiftyDropbox', '~> 10.2.4' end