From 838ab14366679f5464a3d8dcaddab1df40a04f66 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Matu=CC=81s=CC=8C=20Tomlein?= <matus.tomlein@gmail.com>
Date: Thu, 2 Feb 2023 14:00:52 +0100
Subject: [PATCH] Prepare for 5.0.0-beta.1 release

---
 CHANGELOG                           | 9 +++++++++
 Examples                            | 2 +-
 SnowplowTracker.podspec             | 2 +-
 Sources/Core/TrackerConstants.swift | 8 ++++----
 VERSION                             | 2 +-
 5 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index aa1c3d188..92412afd2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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)
diff --git a/Examples b/Examples
index 7057e14b7..826edfdfd 160000
--- a/Examples
+++ b/Examples
@@ -1 +1 @@
-Subproject commit 7057e14b770ae33f0ff2d95464c61982d77010d1
+Subproject commit 826edfdfdf57b51578c2006c07b15df78883ee6d
diff --git a/SnowplowTracker.podspec b/SnowplowTracker.podspec
index 9eb238028..9c5b78a40 100644
--- a/SnowplowTracker.podspec
+++ b/SnowplowTracker.podspec
@@ -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.
diff --git a/Sources/Core/TrackerConstants.swift b/Sources/Core/TrackerConstants.swift
index eb58d70d7..c0d4589a8 100644
--- a/Sources/Core/TrackerConstants.swift
+++ b/Sources/Core/TrackerConstants.swift
@@ -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
diff --git a/VERSION b/VERSION
index 42d68e545..9e25fc0ae 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5.0.0-alpha.2
+5.0.0-beta.1