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
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion Split.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Split/Common/Utils/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 ""
echo ""
Loading