From 411eb13794f021c8429c5c2de2e0b4ea10de4ecf Mon Sep 17 00:00:00 2001 From: Ruben Nine Date: Thu, 12 Nov 2020 16:13:10 +0100 Subject: [PATCH] Preparing for 2.5.2 release. --- CHANGELOG.md | 10 +++++++--- README.md | 10 +++++----- VERSION | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb21c97..1102b98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)* ---------------------------- diff --git a/README.md b/README.md index c958dd0..f4e1ad9 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ platform :ios, '11.0' use_frameworks! target '' do - pod 'FilestackSDK', '~> 2.5.1' + pod 'FilestackSDK', '~> 2.5.2' end ``` @@ -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. @@ -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")) ] ``` @@ -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 @@ -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 diff --git a/VERSION b/VERSION index 73462a5..f225a78 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5.1 +2.5.2