From c54eea30b8cddf355b209edd35ef9eccaab40391 Mon Sep 17 00:00:00 2001 From: Weihao Ding <158090588+weihao-statsig@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:51:51 -0700 Subject: [PATCH] [release] 1.44.0 - Configurable Network Session (#281) **New** - This Version added a new optional `StatsigOption` called `urlSession`. By default, it is set to `URLSession.shared`.This property can be customized to utilize URLSession instances with specific configurations, including certificate pinning, for enhanced security when communicating with servers. >Included In This Release >- fb30551bed43d9daaebf44f96845f608409b76b4 Weihao Ding > - Revert "feat: add support for getParameterStore" (#280) >- 0a81dedceba5a76423bea316b74042a4207cee4b Daniel > - feat: add support for getParameterStore (#279) >- c0fef620674ceef97469d851bc6145d4ae10d6a6 Weihao Ding > - feat: add URLSession into StatsigOptions (#278) --- Sources/Statsig/DeviceEnvironment.swift | 2 +- Statsig.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Statsig/DeviceEnvironment.swift b/Sources/Statsig/DeviceEnvironment.swift index 6a54a7e..26486b9 100644 --- a/Sources/Statsig/DeviceEnvironment.swift +++ b/Sources/Statsig/DeviceEnvironment.swift @@ -7,7 +7,7 @@ struct DeviceEnvironment { static internal let deviceOS = PlatformCompatibility.deviceInfo.os static internal let sdkType: String = "ios-client" - static internal let sdkVersion: String = "1.43.0" + static internal let sdkVersion: String = "1.44.0" let lock = NSLock() var sessionID: String? { UUID().uuidString } diff --git a/Statsig.podspec b/Statsig.podspec index 17f5382..184c968 100644 --- a/Statsig.podspec +++ b/Statsig.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = "Statsig" - spec.version = "1.43.0" + spec.version = "1.44.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: