Skip to content

Commit

Permalink
v3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-troshkov committed Sep 6, 2024
1 parent 820aa8d commit 0c0ba7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PianoAnalytics-AppExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PianoAnalytics-AppExtension'
s.version = '3.1.5'
s.version = '3.1.6'
s.summary = 'Piano Analytics solution for extension Apple devices'
s.homepage = 'https://github.com/at-internet/piano-analytics-apple'
s.documentation_url = 'https://developers.atinternet-solutions.com/piano-analytics'
Expand Down
2 changes: 1 addition & 1 deletion PianoAnalytics.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PianoAnalytics'
s.version = '3.1.5'
s.version = '3.1.6'
s.summary = 'Piano Analytics library for Apple devices'
s.homepage = 'https://github.com/at-internet/piano-analytics-apple'
s.documentation_url = 'https://developers.atinternet-solutions.com/piano-analytics'
Expand Down
2 changes: 1 addition & 1 deletion Sources/PianoAnalytics/PianoAnalytics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public final class PianoAnalytics {
// MARK: PUBLIC SECTION

/// SDK version
public static let sdkVersion = "3.1.5"
public static let sdkVersion = "3.1.6"

/// Send event
///
Expand Down
2 changes: 1 addition & 1 deletion Sources/PianoAnalytics/Steps/LifecycleStep.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ final class LifecycleStep: Step {

private final func `init`() {
let ud = UserDefaults.standard
if !ud.bool(forKey: LifeCycleKeys.FirstSession.rawValue) && ud.bool(forKey: LifeCycleKeys.FirstInitLifecycleDone.rawValue) {
if ud.bool(forKey: LifeCycleKeys.FirstInitLifecycleDone.rawValue) {
self.newSessionInit()
} else {
self.firstSessionInit()
Expand Down

0 comments on commit 0c0ba7f

Please sign in to comment.