Skip to content

Commit

Permalink
Release 10.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Jun 29, 2023
1 parent b2e6067 commit f8e573b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

---

Expand Down Expand Up @@ -952,7 +952,7 @@ For cocoapods, in your Podfile, simply specify `SwiftyDropboxObjC` instead of (o
use_frameworks!

target '<YOUR_PROJECT_NAME>' do
pod 'SwiftyDropboxObjC', '~> 10.0.0-beta.2'
pod 'SwiftyDropboxObjC', '~> 10.0.0-beta.3'
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.0-beta.2</string>
<string>10.0.0-beta.3</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.0-beta.2</string>
<string>10.0.0-beta.3</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.0-beta.2"
public static let versionSDK = "10.0.0-beta.3"
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.0-beta.2</string>
<string>10.0.0-beta.3</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.0-beta.2</string>
<string>10.0.0-beta.3</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.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'
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.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'
Expand All @@ -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

0 comments on commit f8e573b

Please sign in to comment.