Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 'master' into 'develop' after release #427

Merged
merged 5 commits into from
Jul 26, 2024
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
1 change: 1 addition & 0 deletions .github/git-release-branch-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,4 @@ if ! git push origin $current_branch; then
echo "Failed to push changes to the origin $current_branch"
exit 1
fi

6 changes: 3 additions & 3 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use_frameworks!

target 'Example' do
pod 'Mindbox', '2.10.2'
pod 'Mindbox', '2.10.3-rc'
end

target 'MindboxNotificationServiceExtension' do
pod 'MindboxNotifications', '2.10.2'
pod 'MindboxNotifications', '2.10.3-rc'
end

target 'MindboxNotificationContentExtension' do
pod 'MindboxNotifications', '2.10.2'
pod 'MindboxNotifications', '2.10.3-rc'
end
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.10.2"
spec.version = "2.10.3-rc"
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,6 +14,6 @@ Pod::Spec.new do |spec|
'Mindbox' => ['Mindbox/**/*.xcassets', 'Mindbox/**/*.xcdatamodeld', 'Mindbox/**/*.xcprivacy']
}
spec.swift_version = "5"
spec.dependency 'MindboxLogger', '2.10.2'
spec.dependency 'MindboxLogger', '2.10.3-rc'

end
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.10.2"
spec.version = "2.10.3-rc"
spec.summary = "SDK for utilities to work with Mindbox"
spec.description = "-"
spec.homepage = "https://github.com/mindbox-cloud/ios-sdk"
Expand Down
4 changes: 2 additions & 2 deletions 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.10.2"
spec.version = "2.10.3-rc"
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 All @@ -14,6 +14,6 @@ Pod::Spec.new do |spec|
'MindboxNotifications' => ['MindboxNotifications/**/*.xcprivacy']
}
spec.swift_version = "5"
spec.dependency 'MindboxLogger', '2.10.2'
spec.dependency 'MindboxLogger', '2.10.3-rc'

end
2 changes: 1 addition & 1 deletion SDKVersionProvider/SDKVersionConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION = 2.10.2
MARKETING_VERSION = 2.10.3-rc
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.10.2"
public static let sdkVersion = "2.10.3-rc"
}