Skip to content

Commit

Permalink
Prepare for 6.0.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Jul 3, 2024
1 parent 0c326c6 commit 28df8a6
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint Podspec
run: pod lib lint --platforms=${{ matrix.platform }}

Expand Down Expand Up @@ -56,12 +56,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# -- Micro --
- name: Cache Micro
id: cache-micro
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: micro.jar
key: ${{ runner.os }}-micro
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 6.0.5 (2024-07-03)
--------------------------
Stop sending if events fail to be removed from the event store
Add warning for the serialization of data in self-describing event and entity (#898)

Version 6.0.4 (2024-06-12)
--------------------------
Fix CrossDeviceParameterConfiguration constructor to be public (#894) thanks to @thomas-brx
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 = "6.0.4"
s.version = "6.0.5"
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
2 changes: 1 addition & 1 deletion Sources/Core/TrackerConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import Foundation

// --- Version
let kSPRawVersion = "6.0.4"
let kSPRawVersion = "6.0.5"
#if os(iOS)
let kSPVersion = "ios-\(kSPRawVersion)"
#elseif os(tvOS)
Expand Down

0 comments on commit 28df8a6

Please sign in to comment.