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.5.1: (Dec 17, 2025)
- Fixed issue in encryption mode where SDK cache functionality could not be recovered if the encryption key was removed.

3.5.0: (Dec 11, 2025)
- Added Status Handler to Certificate Pinning. This allows to observe the status of a pinning verification, whether it succeeds or not. Read more in our docs.

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.5.1-rc1'
s.version = '3.5.1'
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.5.1-rc1"
private static let kVersion = "3.5.1"

static var semantic: String {
return kVersion
Expand Down
Loading