We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16da404 commit 388064fCopy full SHA for 388064f
src/Version.cs
@@ -4,9 +4,9 @@ public static class Version
4
{
5
public static int Major { get; } = 2;
6
public static int Minor { get; } = 3;
7
- public static int Patch { get; } = 0;
8
- public static int Hotfix { get; } = 1;
9
- public static ReleaseType ReleaseType { get; } = ReleaseType.Development;
+ public static int Patch { get; } = 1;
+ public static int Hotfix { get; } = 0;
+ public static ReleaseType ReleaseType { get; } = ReleaseType.Release;
10
public static string FullVersion { get; } = $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
11
}
12
0 commit comments