Skip to content

Commit 1c8d486

Browse files
author
Sven Jansen
committed
Updates swift version
1 parent bc66efc commit 1c8d486

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CellularRemoteConfiguration.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.version = '8.0.1'
3-
spec.swift_version = '5.6.1'
3+
spec.swift_version = '5.6.0'
44
spec.module_name = 'RemoteConfiguration'
55
spec.name = 'CellularRemoteConfiguration'
66
spec.summary = 'Dynamic configuration of iOS, tvOS or watchOS application using remote files.'

Package.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.6.0
22
import PackageDescription
33

44
let package = Package(
@@ -16,7 +16,10 @@ let package = Package(
1616
.package(url: "https://github.com/cellular/localstorage-swift.git", from: "6.0.0")
1717
],
1818
targets: [
19-
.target(name: "RemoteConfiguration", dependencies: ["CELLULAR", "LocalStorage"]),
19+
.target(name: "RemoteConfiguration", dependencies: [
20+
.product(name: "CELLULAR", package: "cellular-swift"),
21+
.product(name: "LocalStorage", package: "localstorage-swift")
22+
]),
2023
.testTarget(name: "RemoteConfigurationTests", dependencies: ["RemoteConfiguration"]),
2124
]
2225
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The dependency to CellularNetworking has been removed in this version.
153153
The adapter to bind RemoteConfiguration to CellularNetworking has been moved to ```Example/Example/Controller/RemoteConfiguration+Adapter.swift```. This adapter must be copied to the Application to bind RemoteConfiguration to CellularNetworking or any other networking clients like Alamofire or plain NSURLSession.
154154

155155

156-
## Update for version 8.0.0
156+
## Update for version 8.0.1
157157

158158
For mandatory updates it's now possible to ignore one or more iOS versions. iOS Versions contained in the array of "ignoredOSVersions" will not react to mandatory updates until the version is removed from the array.
159159
This could be useful if you don't support special iOS versions anymore but the last working version should stil exist on the AppStore and should not be disabled by a mandatory update. If there is a breaking API change later on, you still have the ability to remove this version from the list and the mandatory update will be shown as usual.

0 commit comments

Comments
 (0)