From 173dbcc051dd9b28cc9356186184ab90faeaa707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matu=CC=81s=CC=8C=20Tomlein?= Date: Thu, 20 Jun 2024 21:11:08 +0200 Subject: [PATCH] Prepare for Snowplow.Tracker 1.3.0 release --- CHANGELOG | 8 ++++++++ Snowplow.Tracker/Snowplow.Tracker.csproj | 4 ++-- Snowplow.Tracker/Version.cs | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0e9bd11..fff6ac1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +Version 1.3.0 (2024-06-20) +-------------------------- +Add an event class for mobile screen view and make the older screen view obsolete +Add CustomGetPath and CustomPostPath methods (#129) thanks to @jfjalburquerque +Update dependencies and .NET version for the tests and console demo projects (#135) +Fix incorrectly formatted value in the structured event for some locales (#134) +Fix error on sending the same payload twice when using in memory event queue (#133) + Version 1.2.2 (2023-03-21) -------------------------- Fix upgrading storage database from previous versions of LiteDB (#131) diff --git a/Snowplow.Tracker/Snowplow.Tracker.csproj b/Snowplow.Tracker/Snowplow.Tracker.csproj index edab26b..8b2ceb4 100644 --- a/Snowplow.Tracker/Snowplow.Tracker.csproj +++ b/Snowplow.Tracker/Snowplow.Tracker.csproj @@ -4,7 +4,7 @@ The Snowplow .NET Tracker lets you track your users' behaviour on your .NET desktop and mobile applications, websites and servers. Define your own custom events to suit your needs. Store your data in a scalable event data warehouse under your own control. Copyright 2023 Snowplow.Tracker - 1.2.2 + 1.3.0 Snowplow Analytics netstandard1.4;netstandard2.0 Snowplow.Tracker @@ -16,7 +16,7 @@ false false false - 1.2.2 + 1.3.0 diff --git a/Snowplow.Tracker/Version.cs b/Snowplow.Tracker/Version.cs index ab52bd7..8fab4da 100644 --- a/Snowplow.Tracker/Version.cs +++ b/Snowplow.Tracker/Version.cs @@ -15,6 +15,6 @@ namespace Snowplow.Tracker { public class Version { - public static string VERSION = "cs-1.2.2"; + public static string VERSION = "cs-1.3.0"; } }