Skip to content

Commit c86b2ff

Browse files
committed
chore: release 0.3.11
1 parent b6f8376 commit c86b2ff

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Aptabase.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Aptabase'
3-
s.version = '0.3.10'
3+
s.version = '0.3.11'
44
s.summary = 'Swift SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps'
55
s.homepage = 'https://aptabase.com'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.3.11
2+
3+
* Reverts previous change which caused RELEASE data not to show up
4+
* Adds an option to explicitly set the tracking mode to Debug or Release. Not setting this option will fallback to the previous reading of environment value.
5+
6+
- Setting to release
7+
`Aptabase.shared.initialize(appKey: "", options: InitOptions(trackingMode: .asRelease))`
8+
9+
- Setting to debug
10+
`Aptabase.shared.initialize(appKey: "", options: InitOptions(trackingMode: .asDebug))`
11+
12+
- Setting omitting the value, same as setting to `.readFromEnvironment`:
13+
`Aptabase.shared.initialize(appKey: "")`
14+
`Aptabase.shared.initialize(appKey: "", options: InitOptions(trackingMode: .readFromEnvironment))`
15+
116
## 0.3.10
217

318
* Fix isDebug environment for multiple non RELEASE build configs https://github.com/aptabase/aptabase-swift/pull/24

Sources/Aptabase/AptabaseClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22

33
class AptabaseClient {
4-
private static let sdkVersion = "[email protected].10"
4+
private static let sdkVersion = "[email protected].11"
55
// Session expires after 1 hour of inactivity
66
private static let sessionTimeout: TimeInterval = 1 * 60 * 60
77

0 commit comments

Comments
 (0)