Skip to content

Commit

Permalink
10.0.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Mar 22, 2024
1 parent b62e1f2 commit d42aba8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o
use_frameworks!

target '<YOUR_PROJECT_NAME>' do
pod 'SwiftyDropboxObjC', '~> 10.0.5'
pod 'SwiftyDropboxObjC', '~> 10.0.6'
end
```

Expand Down
2 changes: 1 addition & 1 deletion Source/SwiftyDropbox/Platform/SwiftyDropbox_iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.0.5</string>
<string>10.0.6</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.0.5</string>
<string>10.0.6</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/SwiftyDropbox/Shared/Handwritten/SDKConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.0.5</string>
<string>10.0.6</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.0.5</string>
<string>10.0.6</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion SwiftyDropbox.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions SwiftyDropboxObjC.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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

0 comments on commit d42aba8

Please sign in to comment.