Skip to content

Commit 388064f

Browse files
committed
version bumped
1 parent 16da404 commit 388064f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Version.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ public static class Version
44
{
55
public static int Major { get; } = 2;
66
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;
7+
public static int Patch { get; } = 1;
8+
public static int Hotfix { get; } = 0;
9+
public static ReleaseType ReleaseType { get; } = ReleaseType.Release;
1010
public static string FullVersion { get; } = $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
1111
}
1212

0 commit comments

Comments
 (0)