Skip to content

Commit 411eb13

Browse files
committed
Preparing for 2.5.2 release.
1 parent af73716 commit 411eb13

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
Change Log
22
==========
33

4+
Version 2.5.2 *(2020-11-12)*
5+
----------------------------
6+
- Changed transformable store request to use GET instead of POST.
7+
48
Version 2.5.1 *(2020-10-19)*
59
----------------------------
6-
- Ensuring automatic deletion of uploaded files logic is triggered in case the upload process is cancelled before starting.
10+
- Ensuring automatic deletion of uploaded files logic is triggered in case the upload process is cancelled before starting.
711

812
Version 2.5.0 *(2020-10-16)*
913
----------------------------
10-
- Added optional setting to allow automatic deletion of uploaded files if they are located in the user's temporary directory.
14+
- Added optional setting to allow automatic deletion of uploaded files if they are located in the user's temporary directory.
1115

1216
Version 2.4.1 *(2020-10-02)*
1317
----------------------------
14-
- Improved memory usage when using the regular upload mechanism.
18+
- Improved memory usage when using the regular upload mechanism.
1519

1620
Version 2.4.0 *(2020-09-30)*
1721
----------------------------

README.md

+5-5
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.5.1'
37+
pod 'FilestackSDK', '~> 2.5.2'
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.5.1`
60+
`github "filestack/filestack-swift" ~> 2.5.2`
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.5.1"))
72+
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "2.5.2"))
7373
]
7474
```
7575

@@ -194,7 +194,7 @@ Both regular and Intelligent Ingestion uploads use the same API function availab
194194
// * storeOptions = StorageOptions(location: .s3, access: .private)
195195
// * defaultPartUploadConcurrency = 5
196196
// * defaultChunkUploadConcurrency = 8
197-
// * chunkSize = 5mbs
197+
// * chunkSize = 5mbs
198198
let uploadOptions = UploadOptions.defaults
199199
// For instance, if you don't want to use Intelligent Ingestion regardless of whether it is available:
200200
uploadOptions.preferIntelligentIngestion = false
@@ -227,7 +227,7 @@ let uploadable = URL(...) // may also be Data or arrays of URL or Data.
227227
// Please notice that most arguments have sensible defaults and may be ommited.
228228
let uploader = client.upload(// You may pass an URL, Data or arrays of URL or Data
229229
using: uploadable,
230-
// Set the upload options here. If none given, `UploadOptions.defaults`
230+
// Set the upload options here. If none given, `UploadOptions.defaults`
231231
// is assumed.
232232
options: uploadOptions,
233233
// Set the dispatch queue where you want your upload progress

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.1
1+
2.5.2

0 commit comments

Comments
 (0)