Skip to content

Commit

Permalink
Prepare for 5.0.0-beta.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Feb 2, 2023
1 parent 9ac9acf commit 838ab14
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 5.0.0-beta.1 (2022-02-02)
----------------------------------
Add ability to provide custom tracker plugins to inspect and enrich tracked events (#750)
Use Swift DSL for building configurations and add builder functions for configurations and events (#755)
Remove requirement for all configurations to be serializable (#753)
Refactor event interface and rename contexts to entities (#757)
Refactor APIs to replace usage of NSObject in dictionaries with the Any type (#748)
Update year in copyright headers and remove authors from headers in source files (#759)

Version 5.0.0-alpha.2 (2022-12-21)
----------------------------------
Add screen view tracking for SwiftUI (#705)
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.2"
s.version = "5.0.0-beta.1"
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 @@ -15,13 +15,13 @@ import Foundation

// --- Version
#if os(iOS)
let kSPVersion = "ios-5.0.0-alpha.2"
let kSPVersion = "ios-5.0.0-beta.1"
#elseif os(tvOS)
let kSPVersion = "tvos-5.0.0-alpha.2"
let kSPVersion = "tvos-5.0.0-beta.1"
#elseif os(watchOS)
let kSPVersion = "watchos-5.0.0-alpha.2"
let kSPVersion = "watchos-5.0.0-beta.1"
#else
let kSPVersion = "osx-5.0.0-alpha.2"
let kSPVersion = "osx-5.0.0-beta.1"
#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.2
5.0.0-beta.1

0 comments on commit 838ab14

Please sign in to comment.