Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ only_rules: # default rules
- ns_number_init_as_function_reference
- nsobject_prefer_isequal
- opening_brace
- operator_whitespace
- function_name_whitespace
- optional_data_string_conversion
- orphaned_doc_comment
- prefer_type_checking
Expand Down
4 changes: 2 additions & 2 deletions Mindbox.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Mindbox"
spec.version = "2.14.0"
spec.version = "2.14.1"
spec.summary = "SDK for integration with Mindbox"
spec.description = "This library allows you to integrate data transfer to Mindbox Marketing Cloud"
spec.homepage = "https://github.com/mindbox-cloud/ios-sdk"
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |spec|
'Mindbox' => ['Mindbox/**/*.xcassets', 'Mindbox/**/*.xcdatamodeld', 'Mindbox/**/*.xcprivacy']
}
spec.swift_version = "5"
spec.dependency 'MindboxLogger', '2.14.0'
spec.dependency 'MindboxLogger', '2.14.1'
spec.dependency 'MindboxCommon', '1.0.4'

end
8 changes: 0 additions & 8 deletions Mindbox/Mindbox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ public class Mindbox: NSObject {
}
}

// TODO: Remove after the resolution of https://github.com/realm/SwiftLint/issues/6219
// swiftlint:disable line_length

/**
A delegate for handling in-app messages.

Expand All @@ -75,7 +72,6 @@ public class Mindbox: NSObject {
inappScheduleManager?.delegate = inAppMessagesDelegate
}
}
// swiftlint:enable line_length

/**
Method to instruct sdk of its initialization.
Expand Down Expand Up @@ -531,9 +527,6 @@ public class Mindbox: NSObject {
return pushValidator.isValid(item: userInfo)
}

// TODO: Remove after the resolution of https://github.com/realm/SwiftLint/issues/6219
// swiftlint:disable line_length

/**
Converts a `UNNotification` to a `MBPushNotification` model for Mindbox push notifications.

Expand All @@ -548,7 +541,6 @@ public class Mindbox: NSObject {
public func getMindboxPushData(userInfo: [AnyHashable: Any]) -> MBPushNotification? {
return NotificationFormatter.formatNotification(userInfo)
}
// swiftlint:enable line_length

private var initError: Error?

Expand Down
2 changes: 1 addition & 1 deletion MindboxLogger.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "MindboxLogger"
spec.version = "2.14.0"
spec.version = "2.14.1"
spec.summary = "SDK for utilities to work with Mindbox"
spec.description = "-"
spec.homepage = "https://github.com/mindbox-cloud/ios-sdk"
Expand Down
2 changes: 1 addition & 1 deletion MindboxNotifications.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "MindboxNotifications"
spec.version = "2.14.0"
spec.version = "2.14.1"
spec.summary = "SDK for integration notifications with Mindbox"
spec.description = "This library allows you to integrate notifications and transfer them to Mindbox Marketing Cloud"
spec.homepage = "https://github.com/mindbox-cloud/ios-sdk"
Expand Down
2 changes: 1 addition & 1 deletion SDKVersionProvider/SDKVersionConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION = 2.14.0
MARKETING_VERSION = 2.14.1
2 changes: 1 addition & 1 deletion SDKVersionProvider/SDKVersionProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
import Foundation

public class SDKVersionProvider {
public static let sdkVersion = "2.14.0"
public static let sdkVersion = "2.14.1"
}