Skip to content

Commit c2f3582

Browse files
Update version to 6.0.5.
1 parent 42eddee commit c2f3582

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Iterable-iOS-AppExtensions.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-AppExtensions"
1919
s.module_name = "IterableAppExtensions"
20-
s.version = "6.0.4"
20+
s.version = "6.0.5"
2121
s.summary = "App Extensions for Iterable SDK"
2222

2323
s.description = <<-DESC

Iterable-iOS-SDK.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-SDK"
1919
s.module_name = "IterableSDK"
20-
s.version = "6.0.4"
20+
s.version = "6.0.5"
2121
s.summary = "Iterable's official SDK for iOS"
2222

2323
s.description = <<-DESC

Tests/swift-sdk-swift-tests/LocalStorageTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class LocalStorageTests: XCTestCase {
105105
let mockDateProvider = MockDateProvider()
106106
var localStorage: LocalStorageProtocol = UserDefaultsLocalStorage(dateProvider: mockDateProvider)
107107
let sdkVersion = "6.0.2"
108-
localStorage.deviceId = sdkVersion
109-
XCTAssertEqual(localStorage.deviceId, sdkVersion)
108+
localStorage.sdkVersion = sdkVersion
109+
XCTAssertEqual(localStorage.sdkVersion, sdkVersion)
110110
}
111111
}

swift-sdk/IterableAPI.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
@objcMembers
1313
public final class IterableAPI : NSObject {
1414
// Current SDK Version.
15-
static let sdkVersion = "6.0.2"
15+
static let sdkVersion = "6.0.5"
1616

1717
// MARK: Initialization
1818
/// You should call this method and not call the init method directly.

0 commit comments

Comments
 (0)