Skip to content

Commit

Permalink
Preparing for 2.3.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnine committed Jul 30, 2020
1 parent ddf1921 commit 4141a11
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Change Log
Version 2.3.1 (2020-07-30)
----------------------------

- Updated Cocoapod and Carthage dependency on `FilestackSDK` to `~> 2.3`.

Version 2.3.1 (2020-07-30)
----------------------------

- Bugfix: Ensure `cloudSourceAllowedUTIs` is set when using `Config.builder`.
- Added `with(cloudThumbnailCachePolicy: URLRequest.CachePolicy)` support to `Config.builder`.

Expand All @@ -13,7 +18,7 @@ Version 2.3 (2020-07-09)
- Added support for background uploads (see "Enabling background upload support" in README.md for more information.)
- Improved upload monitoring and cancellation.
- Updated Cocoapod dependency on `FilestackSDK` to `2.3.1`.
- Removed dependency on `SVProgressHUD`.
- Removed dependency on `SVProgressHUD`.

Version 2.2.2 (2020-05-04)
----------------------------
Expand All @@ -35,7 +40,7 @@ Version 2.2 *(2019-09-18)*
- `Client` upload functions now return types based on protocols, such as `Uploadable`, `DeferredAdd`, `Cancellable`, `Monitorizable` or combinations of these.
- Likewise, the functions `folderList(provider:path:pageToken:queue:completionHandler:)` and `store(provider:path:storeOptions:queue:completionHandler:)` now return a `Cancellable`.
- Improved collection view's layout reflowing in the picker to better adapt to larger presentation styles.
- Improved upload monitor so it now indicates the number of files being uploaded and how many of them are pending upload at any given time.
- Improved upload monitor so it now indicates the number of files being uploaded and how many of them are pending upload at any given time.
- Added redo action to image editor.
- Bugfix: Explicitly ask for authorization before accessing Photos library.
- Bugfix: Fallback to `JPEG` export if `HEIC` is not available on the device.
Expand Down
2 changes: 1 addition & 1 deletion Filestack.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ Pod::Spec.new do |spec|
spec.resources = ["Filestack/UI/Storyboards/*.storyboard", "Filestack/Resources/*.xcassets"]

spec.dependency 'Alamofire', '~> 4.9'
spec.dependency 'FilestackSDK', '2.3.1'
spec.dependency 'FilestackSDK', '~> 2.3'
spec.dependency 'SSZipArchive', '2.2.3'
end
10 changes: 5 additions & 5 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.3.1'
pod 'Filestack', '~> 2.3.2'
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.3.1`
`github "filestack/filestack-ios" ~> 2.3.2`

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

Expand Down Expand Up @@ -322,11 +322,11 @@ extension ViewController: PickerNavigationControllerDelegate {
print("Error uploading file: \(error)")
}
}

/// Called when the picker reports progress during a file or set of files being uploaded.
func pickerReportedUploadProgress(picker: PickerNavigationController, progress: Float) {
print("Picker \(picker) reported upload progress: \(progress)")
}
}
}
```

Expand All @@ -347,7 +347,7 @@ FilestackSDK.UploadService.shared.useBackgroundSession = true

## Demo

Check the demo app included in this repository showcasing all the topics discussed above.
Check the demo app included in this repository showcasing all the topics discussed above.

## Versioning

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

0 comments on commit 4141a11

Please sign in to comment.