diff --git a/.swiftlint.yml b/.swiftlint.yml index d9c79e9b..ad9baa55 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -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 diff --git a/Mindbox.podspec b/Mindbox.podspec index aaa431be..b04b11d1 100644 --- a/Mindbox.podspec +++ b/Mindbox.podspec @@ -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" @@ -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 diff --git a/Mindbox/Mindbox.swift b/Mindbox/Mindbox.swift index 295a2dc4..0ca7d7cf 100644 --- a/Mindbox/Mindbox.swift +++ b/Mindbox/Mindbox.swift @@ -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. @@ -75,7 +72,6 @@ public class Mindbox: NSObject { inappScheduleManager?.delegate = inAppMessagesDelegate } } - // swiftlint:enable line_length /** Method to instruct sdk of its initialization. @@ -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. @@ -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? diff --git a/MindboxLogger.podspec b/MindboxLogger.podspec index 083ee4f7..e68e8150 100644 --- a/MindboxLogger.podspec +++ b/MindboxLogger.podspec @@ -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" diff --git a/MindboxNotifications.podspec b/MindboxNotifications.podspec index 1a7b3787..066099c1 100644 --- a/MindboxNotifications.podspec +++ b/MindboxNotifications.podspec @@ -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" diff --git a/SDKVersionProvider/SDKVersionConfig.xcconfig b/SDKVersionProvider/SDKVersionConfig.xcconfig index 636ae774..67912d98 100644 --- a/SDKVersionProvider/SDKVersionConfig.xcconfig +++ b/SDKVersionProvider/SDKVersionConfig.xcconfig @@ -1 +1 @@ -MARKETING_VERSION = 2.14.0 +MARKETING_VERSION = 2.14.1 diff --git a/SDKVersionProvider/SDKVersionProvider.swift b/SDKVersionProvider/SDKVersionProvider.swift index a2394cae..d312324b 100644 --- a/SDKVersionProvider/SDKVersionProvider.swift +++ b/SDKVersionProvider/SDKVersionProvider.swift @@ -8,6 +8,6 @@ import Foundation public class SDKVersionProvider { - public static let sdkVersion = "2.14.0" + public static let sdkVersion = "2.14.1" }