diff --git a/CHANGES.txt b/CHANGES.txt index dd075f5e5..af6cfd4f3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +3.6.0: (ene. 8, 2026) +- - The SDK is now Swift 6 compatible. + 3.5.2: (Dec 18, 2025) - Fixed issue where targeting rules cache integrity could be lost if a SQLite write failed. diff --git a/Split.podspec b/Split.podspec index 5cb0ee9a3..3ba9bf6b8 100644 --- a/Split.podspec +++ b/Split.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'Split' s.module_name = 'Split' - s.version = '3.6.0-rc2' + s.version = '3.6.0' s.summary = 'iOS SDK for Split' s.description = <<-DESC This SDK is designed to work with Split, the platform for controlled rollouts, serving features to your users via the Split feature flag to manage your complete customer experience. diff --git a/Split/Common/Utils/Version.swift b/Split/Common/Utils/Version.swift index f91a95cda..3eb481aaa 100644 --- a/Split/Common/Utils/Version.swift +++ b/Split/Common/Utils/Version.swift @@ -10,7 +10,7 @@ import Foundation class Version { private static let kSdkPlatform: String = "ios" - private static let kVersion = "3.6.0-rc2" + private static let kVersion = "3.6.0" static var semantic: String { return kVersion diff --git a/scripts/release.sh b/scripts/release.sh index 35f15ddff..f036a532b 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -97,6 +97,7 @@ if [ "$IS_RC" = false ]; then done # Create the new entry + CURRENT_DATE=$(LC_ALL=C date "+%b %-d, %Y") NEW_ENTRY="$VERSION: ($CURRENT_DATE)" if [ -n "$CHANGES" ]; then NEW_ENTRY="$NEW_ENTRY\n$CHANGES" @@ -153,4 +154,4 @@ echo "" echo "Next steps:" echo "1. Complete the pull request to merge $RELEASE_BRANCH into $TARGET_BRANCH" echo "2. After merging, the GitHub workflow will create and push the tag" -echo "" \ No newline at end of file +echo ""