diff --git a/CHANGELOG b/CHANGELOG index 3611cf3e8..deeb07cfc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 6.1.0 (2025-01-16) +-------------------------- +Add new WebView interface (#913) + Version 6.0.9 (2024-11-21) -------------------------- Handle nan values and other non-serializable data in events from the WebView tracker (#909) diff --git a/Package.resolved b/Package.resolved index 3cbaceed3..4fc33c6bc 100644 --- a/Package.resolved +++ b/Package.resolved @@ -14,16 +14,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-docc-plugin", "state" : { - "revision" : "26ac5758409154cc448d7ab82389c520fa8a8247", - "version" : "1.3.0" - } - }, - { - "identity" : "swift-docc-symbolkit", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-docc-symbolkit", - "state" : { - "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34", + "revision" : "3303b164430d9a7055ba484c8ead67a52f7b74f6", "version" : "1.0.0" } } diff --git a/SnowplowTracker.podspec b/SnowplowTracker.podspec index c711c83e2..0809cb016 100644 --- a/SnowplowTracker.podspec +++ b/SnowplowTracker.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SnowplowTracker" - s.version = "6.0.9" + s.version = "6.1.0" 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 b160154f5..c71181497 100644 --- a/Sources/Core/TrackerConstants.swift +++ b/Sources/Core/TrackerConstants.swift @@ -14,7 +14,7 @@ import Foundation // --- Version -let kSPRawVersion = "6.0.9" +let kSPRawVersion = "6.1.0" #if os(iOS) let kSPVersion = "ios-\(kSPRawVersion)" #elseif os(tvOS)