diff --git a/Aptabase.podspec b/Aptabase.podspec index 0b1299a..2e0942e 100644 --- a/Aptabase.podspec +++ b/Aptabase.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Aptabase' - s.version = '0.3.9' + s.version = '0.3.10' s.summary = 'Swift SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps' s.homepage = 'https://aptabase.com' s.license = { :type => 'MIT', :file => 'LICENSE' } diff --git a/CHANGELOG.md b/CHANGELOG.md index dca3f16..1a50fb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.10 + +* Fix isDebug environment for multiple non RELEASE build configs https://github.com/aptabase/aptabase-swift/pull/24 + ## 0.3.9 * Fix device model for Mac https://github.com/aptabase/aptabase-swift/pull/22 diff --git a/Sources/Aptabase/AptabaseClient.swift b/Sources/Aptabase/AptabaseClient.swift index c6eaa78..2b48c77 100644 --- a/Sources/Aptabase/AptabaseClient.swift +++ b/Sources/Aptabase/AptabaseClient.swift @@ -1,7 +1,7 @@ import Foundation class AptabaseClient { - private static let sdkVersion = "aptabase-swift@0.3.9" + private static let sdkVersion = "aptabase-swift@0.3.10" // Session expires after 1 hour of inactivity private static let sessionTimeout: TimeInterval = 1 * 60 * 60