Skip to content

Commit 12b7829

Browse files
committed
Preparing for 2.8.0 release.
1 parent bf49d73 commit 12b7829

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
==========
33

4+
Version 2.8.0 *(2021-08-06)*
5+
----------------------------
6+
- It is now possible for SDK users to implement their own picker sources programmatically. Please refer to
7+
`SourceProvider` and the demo project included with this SDK for more information.
8+
- Updated demo project to include a custom picker source implementation.
9+
- Updated demo project to support requesting extra background execution time if the Filestack SDK Client is currently
10+
uploading files.
11+
- Updated dependency on `FilestackSDK` to 2.8.0.
12+
413
Version 2.7.2 *(2021-05-03)*
514
----------------------------
615

Filestack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Pod::Spec.new do |spec|
1515

1616
spec.swift_versions = [4.2, 5.2]
1717

18-
spec.dependency 'FilestackSDK', '~> 2.6'
18+
spec.dependency 'FilestackSDK', '~> 2.8'
1919
spec.dependency 'ZIPFoundation', '0.9.11'
2020
end

Filestack.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,8 +1227,8 @@
12271227
isa = XCRemoteSwiftPackageReference;
12281228
repositoryURL = "https://github.com/filestack/filestack-swift.git";
12291229
requirement = {
1230-
branch = develop;
1231-
kind = branch;
1230+
kind = upToNextMajorVersion;
1231+
minimumVersion = 2.8.0;
12321232
};
12331233
};
12341234
/* End XCRemoteSwiftPackageReference section */

Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ platform :ios, '11.0'
3131
use_frameworks!
3232
3333
target '<Your Target Name>' do
34-
pod 'Filestack', '~> 2.7.2'
34+
pod 'Filestack', '~> 2.8.0'
3535
end
3636
```
3737

@@ -52,7 +52,7 @@ $ brew install carthage
5252

5353
To integrate Filestack into your Xcode project using Carthage, specify it in your `Cartfile`:
5454

55-
`github "filestack/filestack-ios" ~> 2.7.2`
55+
`github "filestack/filestack-ios" ~> 2.8.0`
5656

5757
Run `carthage update` to build the framework and drag the built `Filestack.framework` into your Xcode project. Additionally, add `Filestack.framework`, `FilestackSDK.framework`, and `ZIPFoundation.framework` to the embedded frameworks build phase of your app's target.
5858

@@ -64,7 +64,7 @@ Alternatively, if you are adding `Filestack` to your own Swift Package, declare
6464

6565
```swift
6666
dependencies: [
67-
.package(name: "Filestack", url: "https://github.com/filestack/filestack-ios.git", .upToNextMajor(from: "2.7.2"))
67+
.package(name: "Filestack", url: "https://github.com/filestack/filestack-ios.git", .upToNextMajor(from: "2.8.0"))
6868
]
6969
```
7070

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.2
1+
2.8.0

0 commit comments

Comments
 (0)