diff --git a/Analytics/Analytics.cs b/Analytics/Analytics.cs index 2b3b5388..1eb2d287 100644 --- a/Analytics/Analytics.cs +++ b/Analytics/Analytics.cs @@ -3,7 +3,7 @@ namespace Segment public class Analytics { // REMINDER: don't forget to set Properties.AssemblyInfo.AssemblyVersion as well - public static string VERSION = "3.5.0"; + public static string VERSION = "3.6.0"; /// /// Lock for thread-safety diff --git a/Analytics/Analytics.csproj b/Analytics/Analytics.csproj index dacbe564..ea139a0b 100644 --- a/Analytics/Analytics.csproj +++ b/Analytics/Analytics.csproj @@ -5,7 +5,7 @@ Segment false Analytics - 3.5.0 + 3.6.0 Segment Team Analytics.NET diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1afa5a..0fcc6a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +3.6.0 / 2021-03-10 +================== + * [Improvement](https://github.com/segmentio/Analytics.NET/pull/159): Updating NuGet metadata + * [Improvement](https://github.com/segmentio/Analytics.NET/pull/158): Catch post async network exceptions and retry + * [Improvement](https://github.com/segmentio/Analytics.NET/pull/155): Adding support for dependency injection + 3.5.0 / 2020-12-09 ================== * [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. diff --git a/RELEASING.md b/RELEASING.md index 8e792b41..2912be52 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,10 +1,9 @@ -Releasing -========= +# Releasing - 1. Change the version in `Analytics/Analytics.csproj`. - 2. Update the version in `Analytics/Analytics.cs`. - 3. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to verify the build. - 4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version) - 5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) - 6. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to build. - 7. `nuget push Analytics.{X.Y.Z}.nupkg -Source https://www.nuget.org/api/v2/package` +1. Change the version in `Analytics/Analytics.csproj`. +2. Update the version in `Analytics/Analytics.cs`. +3. `dotnet pack -o . -c Release Analytics/Analytics.csproj` to verify the build. +4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version) +5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) +6. `dotnet pack -o . -c Release Analytics\Analytics.csproj` to build. +7. `nuget push Analytics.{X.Y.Z}.nupkg -Source https://www.nuget.org/api/v2/package`