Skip to content

Commit c82b1ca

Browse files
committed
Preparing for 3.0.0 release
1 parent 5e2249a commit c82b1ca

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==========
33

4+
Version 3.0.0 *(2025-03-31)*
5+
----------------------------
6+
- Fixed all warnings
7+
- Minimum target of swift sdk from 11 to 14
8+
- Clarify the use of 'access' storage option
9+
410
Version 2.8.0 *(2021-08-06)*
511
----------------------------
612
- Set `networkServiceType` to `.responsiveData` in `UploadService` to prioritize upload requests.

FilestackSDK.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |spec|
77
spec.summary = 'Official Swift SDK for Filestack.'
88
spec.source = { :git => 'https://github.com/filestack/filestack-swift.git', :tag => spec.version }
99

10-
spec.ios.deployment_target = '11.0'
10+
spec.ios.deployment_target = '14.0'
1111

1212
spec.source_files = 'Sources/**/*.{h,swift}'
1313
spec.exclude_files = 'Sources/**/SPMSupport/*.*'

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(
77
name: "FilestackSDK",
8-
platforms: [.iOS(.v11)],
8+
platforms: [.iOS(.v14)],
99
products: [
1010
.library(
1111
name: "FilestackSDK",

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is the official Swift SDK for Filestack - API and content management system
1414

1515
* Xcode 10.2+ (*Xcode 12+ required for SPM support*)
1616
* Swift 4.2+ / Objective-C
17-
* iOS 11.0+
17+
* iOS 14.0+
1818

1919
## Installing
2020

@@ -30,11 +30,11 @@ To integrate FilestackSDK into your Xcode project using CocoaPods, specify it in
3030

3131
```ruby
3232
source 'https://github.com/CocoaPods/Specs.git'
33-
platform :ios, '11.0'
33+
platform :ios, '14.0'
3434
use_frameworks!
3535

3636
target '<Your Target Name>' do
37-
pod 'FilestackSDK', '~> 2.8.0'
37+
pod 'FilestackSDK', '~> 3.0.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.8.0`
60+
`github "filestack/filestack-swift" ~> 3.0.0`
6161

6262
Run `carthage update` to build the framework and drag the built `FilestackSDK.framework` into your Xcode project.
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.8.0"))
72+
.package(url: "https://github.com/filestack/filestack-swift.git", .upToNextMajor(from: "3.0.0"))
7373
]
7474
```
7575

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.0
1+
3.0.0

0 commit comments

Comments
 (0)