Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit 470f657

Browse files
committed
Release 3.6.0
1 parent 0b377e0 commit 470f657

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

Analytics/Analytics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace Segment
33
public class Analytics
44
{
55
// REMINDER: don't forget to set Properties.AssemblyInfo.AssemblyVersion as well
6-
public static string VERSION = "3.5.0";
6+
public static string VERSION = "3.6.0";
77

88
/// <summary>
99
/// Lock for thread-safety

Analytics/Analytics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RootNamespace>Segment</RootNamespace>
66
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
77
<PackageId>Analytics</PackageId>
8-
<Version>3.5.0</Version>
8+
<Version>3.6.0</Version>
99
<Authors>Segment Team</Authors>
1010
<Company />
1111
<Product>Analytics.NET</Product>

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.6.0 / 2021-03-10
2+
==================
3+
* [Improvement](https://github.com/segmentio/Analytics.NET/pull/159): Updating NuGet metadata
4+
* [Improvement](https://github.com/segmentio/Analytics.NET/pull/158): Catch post async network exceptions and retry
5+
* [Improvement](https://github.com/segmentio/Analytics.NET/pull/155): Adding support for dependency injection
6+
17
3.5.0 / 2020-12-09
28
==================
39
* [Improvement](https://github.com/segmentio/Analytics.NET/pull/151): Fixed behavior of confusing configuration parameter `Send`. It now defaults to `true` and means data will be sent to Segment.

RELEASING.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
Releasing
2-
=========
1+
# Releasing
32

4-
1. Change the version in `Analytics/Analytics.csproj`.
5-
2. Update the version in `Analytics/Analytics.cs`.
6-
3. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to verify the build.
7-
4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
8-
5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
9-
6. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to build.
10-
7. `nuget push Analytics.{X.Y.Z}.nupkg -Source https://www.nuget.org/api/v2/package`
3+
1. Change the version in `Analytics/Analytics.csproj`.
4+
2. Update the version in `Analytics/Analytics.cs`.
5+
3. `dotnet pack -o . -c Release Analytics/Analytics.csproj` to verify the build.
6+
4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
7+
5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
8+
6. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to build.
9+
7. `nuget push Analytics.{X.Y.Z}.nupkg -Source https://www.nuget.org/api/v2/package`

0 commit comments

Comments
 (0)