From 12b782904814902d2f4844d719678ca4a2838032 Mon Sep 17 00:00:00 2001 From: Ruben Nine Date: Fri, 6 Aug 2021 14:13:57 +0200 Subject: [PATCH] Preparing for 2.8.0 release. --- CHANGELOG.md | 9 +++++++++ Filestack.podspec | 2 +- Filestack.xcodeproj/project.pbxproj | 4 ++-- .../xcshareddata/swiftpm/Package.resolved | 6 +++--- README.md | 6 +++--- VERSION | 2 +- 6 files changed, 19 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6da8d1..254c302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========== +Version 2.8.0 *(2021-08-06)* +---------------------------- +- It is now possible for SDK users to implement their own picker sources programmatically. Please refer to +`SourceProvider` and the demo project included with this SDK for more information. +- Updated demo project to include a custom picker source implementation. +- Updated demo project to support requesting extra background execution time if the Filestack SDK Client is currently +uploading files. +- Updated dependency on `FilestackSDK` to 2.8.0. + Version 2.7.2 *(2021-05-03)* ---------------------------- diff --git a/Filestack.podspec b/Filestack.podspec index 7615b62..f3528f8 100644 --- a/Filestack.podspec +++ b/Filestack.podspec @@ -15,6 +15,6 @@ Pod::Spec.new do |spec| spec.swift_versions = [4.2, 5.2] - spec.dependency 'FilestackSDK', '~> 2.6' + spec.dependency 'FilestackSDK', '~> 2.8' spec.dependency 'ZIPFoundation', '0.9.11' end diff --git a/Filestack.xcodeproj/project.pbxproj b/Filestack.xcodeproj/project.pbxproj index fe0ea25..09eb0e6 100644 --- a/Filestack.xcodeproj/project.pbxproj +++ b/Filestack.xcodeproj/project.pbxproj @@ -1227,8 +1227,8 @@ isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/filestack/filestack-swift.git"; requirement = { - branch = develop; - kind = branch; + kind = upToNextMajorVersion; + minimumVersion = 2.8.0; }; }; /* End XCRemoteSwiftPackageReference section */ diff --git a/Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved index e16eda0..15617f3 100644 --- a/Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -5,9 +5,9 @@ "package": "FilestackSDK", "repositoryURL": "https://github.com/filestack/filestack-swift.git", "state": { - "branch": "develop", - "revision": "63a1e52be4e20fbdb49500a3c3eb271d2790d728", - "version": null + "branch": null, + "revision": "5ba0ac9ca2fb53ccf18335b1654b8cc600785b66", + "version": "2.8.0" } }, { diff --git a/README.md b/README.md index 2d82eb6..fcf4d23 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ platform :ios, '11.0' use_frameworks! target '' do - pod 'Filestack', '~> 2.7.2' + pod 'Filestack', '~> 2.8.0' end ``` @@ -52,7 +52,7 @@ $ brew install carthage To integrate Filestack into your Xcode project using Carthage, specify it in your `Cartfile`: -`github "filestack/filestack-ios" ~> 2.7.2` +`github "filestack/filestack-ios" ~> 2.8.0` 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. @@ -64,7 +64,7 @@ Alternatively, if you are adding `Filestack` to your own Swift Package, declare ```swift dependencies: [ - .package(name: "Filestack", url: "https://github.com/filestack/filestack-ios.git", .upToNextMajor(from: "2.7.2")) + .package(name: "Filestack", url: "https://github.com/filestack/filestack-ios.git", .upToNextMajor(from: "2.8.0")) ] ``` diff --git a/VERSION b/VERSION index 37c2961..834f262 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.2 +2.8.0