Skip to content

Commit f6ebb34

Browse files
committed
Preparing for 2.5.0 release.
1 parent dfe28a9 commit f6ebb34

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

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

4+
Version 2.5.0 *(2020-10-16)*
5+
----------------------------
6+
- Added optional setting to allow automatic deletion of uploaded files if they are located in the user's temporary directory.
7+
48
Version 2.4.1 *(2020-10-02)*
59
----------------------------
610
- Improved memory usage when using the regular upload mechanism.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ platform :ios, '11.0'
3434
use_frameworks!
3535

3636
target '<Your Target Name>' do
37-
pod 'FilestackSDK', '~> 2.4.1'
37+
pod 'FilestackSDK', '~> 2.5.0'
3838
end
3939
```
4040

@@ -57,7 +57,7 @@ $ brew install carthage
5757

5858
To integrate FilestackSDK into your Xcode project using Carthage, specify it in your `Cartfile`:
5959

60-
`github "filestack/filestack-swift" ~> 2.4.1`
60+
`github "filestack/filestack-swift" ~> 2.5.0`
6161

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

@@ -69,7 +69,7 @@ Alternatively, if you are adding `FilestackSDK` to your own Swift Package, decla
6969

7070
```swift
7171
dependencies: [
72-
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "2.4.1"))
72+
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "2.5.0"))
7373
]
7474
```
7575

@@ -190,6 +190,7 @@ Both regular and Intelligent Ingestion uploads use the same API function availab
190190
// Here we use `.defaults` which implies:
191191
// * preferIntelligentIngestion = true
192192
// * startImmediately = true
193+
// * deleteTemporaryFilesAfterUpload = false
193194
// * storeOptions = StorageOptions(location: .s3, access: .private)
194195
// * defaultPartUploadConcurrency = 5
195196
// * defaultChunkUploadConcurrency = 8
@@ -268,6 +269,7 @@ uploader.progress // returns a `Progress` object
268269
// Here we use `.defaults` which implies:
269270
// * preferIntelligentIngestion = true
270271
// * startImmediately = true
272+
// * deleteTemporaryFilesAfterUpload = false
271273
// * storeOptions = FSStorageOptions.defaults (= location:S3, access:private)
272274
// * defaultPartUploadConcurrency = 5
273275
// * defaultChunkUploadConcurrency = 8

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.1
1+
2.5.0

0 commit comments

Comments
 (0)