diff --git a/CHANGELOG b/CHANGELOG index 320fb05c1..5c5a53241 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 6.0.8 (2024-08-19) +-------------------------- +Fix media tracking calls not being dispatched on the correct queue when tracking using AVPlayer + Version 6.0.7 (2024-07-16) -------------------------- Fix incorrect decoding of timeout property in network configuration (#902) diff --git a/Examples b/Examples index 26d1f93aa..17c63afb1 160000 --- a/Examples +++ b/Examples @@ -1 +1 @@ -Subproject commit 26d1f93aa04ee85a1f492204f5ded0725a2de6af +Subproject commit 17c63afb1da94a86706d0400a9cc79115d000537 diff --git a/SnowplowTracker.podspec b/SnowplowTracker.podspec index 698d850a9..8281f5f43 100644 --- a/SnowplowTracker.podspec +++ b/SnowplowTracker.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SnowplowTracker" - s.version = "6.0.7" + s.version = "6.0.8" s.summary = "Snowplow event tracker for iOS, macOS, tvOS, watchOS for apps and games." s.description = <<-DESC Snowplow is a mobile and event analytics platform with a difference: rather than tell our users how they should analyze their data, we deliver their event-level data in their own data warehouse, on their own Amazon Redshift or Postgres database, so they can analyze it any way they choose. Snowplow mobile is used by data-savvy games companies and app developers to better understand their users and how they engage with their games and applications. Snowplow is open source using the business-friendly Apache License, Version 2.0 and scales horizontally to many billions of events. diff --git a/Sources/Core/TrackerConstants.swift b/Sources/Core/TrackerConstants.swift index d60736d45..c1f2b470e 100644 --- a/Sources/Core/TrackerConstants.swift +++ b/Sources/Core/TrackerConstants.swift @@ -14,7 +14,7 @@ import Foundation // --- Version -let kSPRawVersion = "6.0.7" +let kSPRawVersion = "6.0.8" #if os(iOS) let kSPVersion = "ios-\(kSPRawVersion)" #elseif os(tvOS)