Skip to content

Commit

Permalink
support tvos (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkw-statsig authored Jun 9, 2022
1 parent 56f5d03 commit 89e93c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription

let package = Package(
name: "Statsig",
platforms: [.iOS(.v10)],
platforms: [.iOS(.v10), .tvOS(.v10)],
products: [
.library(
name: "Statsig",
Expand Down
2 changes: 1 addition & 1 deletion Sources/Statsig/DeviceEnvironment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct DeviceEnvironment {

var deviceOS: String = "iOS"
var sdkType: String = "ios-client"
var sdkVersion: String = "1.12.0"
var sdkVersion: String = "1.13.0"
var sessionID: String? { UUID().uuidString }
var systemVersion: String { UIDevice.current.systemVersion }
var systemName: String { UIDevice.current.systemName }
Expand Down
2 changes: 1 addition & 1 deletion Statsig.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "Statsig"
spec.version = "1.12.0"
spec.version = "1.13.0"
spec.summary = "Statsig enables developers to ship code faster and more safely."
spec.description = <<-DESC
Statsig enables developers to ship code faster and more safely by providing:
Expand Down
2 changes: 1 addition & 1 deletion StatsigInternalObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "StatsigInternalObjC"
spec.version = "1.12.0"
spec.version = "1.13.0"
spec.summary = "Statsig enables developers to ship code faster and more safely."
spec.description = <<-DESC
Statsig enables developers to ship code faster and more safely.
Expand Down

0 comments on commit 89e93c9

Please sign in to comment.