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

Commit

Permalink
Release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pooyaj committed Mar 10, 2021
1 parent 0b377e0 commit 470f657
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Analytics/Analytics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

/// <summary>
/// Lock for thread-safety
Expand Down
2 changes: 1 addition & 1 deletion Analytics/Analytics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>Segment</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>Analytics</PackageId>
<Version>3.5.0</Version>
<Version>3.6.0</Version>
<Authors>Segment Team</Authors>
<Company />
<Product>Analytics.NET</Product>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
17 changes: 8 additions & 9 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -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`

0 comments on commit 470f657

Please sign in to comment.