Skip to content
Draft
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
2 changes: 1 addition & 1 deletion Apps/Common/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.5
// swift-tools-version:5.9

import PackageDescription

Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ After making changes to Unit Tests, ALWAYS test the changed test classes. Avoid
- After `make generate`, always run `make format` first and then `make lint`

## Code Style
- Swift 5.3+ with protocol-oriented design
- Swift 5.9+ with protocol-oriented design
- Naming: CamelCase for types, camelCase for properties/methods
- Descriptive method names (e.g., `identify`, `registerDeviceToken`)
- Always use a constructor-based dependency injection pattern, and use `DIGraphShared` only for top-level module initialization
Expand Down
2 changes: 1 addition & 1 deletion CustomerIO.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOMessagingInApp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOMessagingPush.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOMessagingPushAPN.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOMessagingPushFCM.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion CustomerIOTrackingMigration.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }

spec.swift_version = '5.3'
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.11.0'

spec.platform = :ios # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.5
// swift-tools-version:5.9

/**
Manifest file for Swift Package Manager. This file defines our Swift Package for customers to install our SDK modules into their app.
Expand Down
Loading