Skip to content

Commit

Permalink
Prepare for Snowplow.Tracker 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Jun 20, 2024
1 parent e4b68c7 commit 173dbcc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Snowplow.Tracker/Snowplow.Tracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>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.</Description>
<Copyright>Copyright 2023</Copyright>
<AssemblyTitle>Snowplow.Tracker</AssemblyTitle>
<VersionPrefix>1.2.2</VersionPrefix>
<VersionPrefix>1.3.0</VersionPrefix>
<Authors>Snowplow Analytics</Authors>
<TargetFrameworks>netstandard1.4;netstandard2.0</TargetFrameworks>
<AssemblyName>Snowplow.Tracker</AssemblyName>
Expand All @@ -16,7 +16,7 @@
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Version>1.2.2</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Snowplow.Tracker/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}

0 comments on commit 173dbcc

Please sign in to comment.