Skip to content

Commit

Permalink
Prepare for 5.0.0-alpha.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Dec 21, 2022
1 parent 9e5760a commit a0f8a49
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
Version 5.0.0-alpha.2 (2022-12-21)
----------------------------------
Add screen view tracking for SwiftUI (#705)
Drop Carthage and build using Swift Package Manager (#735)
Add tests using Micro for payload validation (#736)
Add a closure to tracker configuration that enables retrieving IDFA value and replaces the use of SNOWPLOW_IDFA_ENABLED macro (#678)
Update API comments for Swift-DocC and add missing comments (#740)
Add API docs using Swift-DocC (#739)

Version 5.0.0-alpha.1 (2022-11-30)
--------------------------
----------------------------------
Migrate to Swift (#732)

Version 4.1.0 (2022-11-16)
Expand Down
2 changes: 1 addition & 1 deletion Examples
2 changes: 1 addition & 1 deletion SnowplowTracker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SnowplowTracker"
s.version = "5.0.0-alpha.1"
s.version = "5.0.0-alpha.2"
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.
Expand Down
8 changes: 4 additions & 4 deletions Sources/Core/TrackerConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ import Foundation

// --- Version
#if os(iOS)
let kSPVersion = "ios-5.0.0-alpha.1"
let kSPVersion = "ios-5.0.0-alpha.2"
#elseif os(tvOS)
let kSPVersion = "tvos-5.0.0-alpha.1"
let kSPVersion = "tvos-5.0.0-alpha.2"
#elseif os(watchOS)
let kSPVersion = "watchos-5.0.0-alpha.1"
let kSPVersion = "watchos-5.0.0-alpha.2"
#else
let kSPVersion = "osx-5.0.0-alpha.1"
let kSPVersion = "osx-5.0.0-alpha.2"
#endif

// --- Session Dictionary keys
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0-alpha.1
5.0.0-alpha.2

0 comments on commit a0f8a49

Please sign in to comment.