Skip to content

Commit

Permalink
Preparing for 2.5.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnine committed Nov 12, 2020
1 parent af73716 commit 411eb13
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
Change Log
==========

Version 2.5.2 *(2020-11-12)*
----------------------------
- Changed transformable store request to use GET instead of POST.

Version 2.5.1 *(2020-10-19)*
----------------------------
- Ensuring automatic deletion of uploaded files logic is triggered in case the upload process is cancelled before starting.
- Ensuring automatic deletion of uploaded files logic is triggered in case the upload process is cancelled before starting.

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

Version 2.4.1 *(2020-10-02)*
----------------------------
- Improved memory usage when using the regular upload mechanism.
- Improved memory usage when using the regular upload mechanism.

Version 2.4.0 *(2020-09-30)*
----------------------------
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ platform :ios, '11.0'
use_frameworks!

target '<Your Target Name>' do
pod 'FilestackSDK', '~> 2.5.1'
pod 'FilestackSDK', '~> 2.5.2'
end
```

Expand All @@ -57,7 +57,7 @@ $ brew install carthage

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

`github "filestack/filestack-swift" ~> 2.5.1`
`github "filestack/filestack-swift" ~> 2.5.2`

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.

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

```swift
dependencies: [
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "2.5.1"))
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "2.5.2"))
]
```

Expand Down Expand Up @@ -194,7 +194,7 @@ Both regular and Intelligent Ingestion uploads use the same API function availab
// * storeOptions = StorageOptions(location: .s3, access: .private)
// * defaultPartUploadConcurrency = 5
// * defaultChunkUploadConcurrency = 8
// * chunkSize = 5mbs
// * chunkSize = 5mbs
let uploadOptions = UploadOptions.defaults
// For instance, if you don't want to use Intelligent Ingestion regardless of whether it is available:
uploadOptions.preferIntelligentIngestion = false
Expand Down Expand Up @@ -227,7 +227,7 @@ let uploadable = URL(...) // may also be Data or arrays of URL or Data.
// Please notice that most arguments have sensible defaults and may be ommited.
let uploader = client.upload(// You may pass an URL, Data or arrays of URL or Data
using: uploadable,
// Set the upload options here. If none given, `UploadOptions.defaults`
// Set the upload options here. If none given, `UploadOptions.defaults`
// is assumed.
options: uploadOptions,
// Set the dispatch queue where you want your upload progress
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.1
2.5.2

0 comments on commit 411eb13

Please sign in to comment.