Skip to content

Commit

Permalink
Preparing for 2.8.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnine committed Aug 6, 2021
1 parent bf49d73 commit 12b7829
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion Filestack.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Filestack.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
6 changes: 3 additions & 3 deletions Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},
{
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ platform :ios, '11.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Filestack', '~> 2.7.2'
pod 'Filestack', '~> 2.8.0'
end
```

Expand All @@ -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.

Expand All @@ -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"))
]
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.2
2.8.0

0 comments on commit 12b7829

Please sign in to comment.