diff --git a/src/Version.cs b/src/Version.cs index 4f3cfa6b..da18fd0c 100644 --- a/src/Version.cs +++ b/src/Version.cs @@ -7,8 +7,8 @@ public static class Version public static SysVer AsDotNetVersion() => new SysVer(Major, Minor, Patch, Hotfix); private static int Major => 3; private static int Minor => 1; - private static int Patch => 0; - private static int Hotfix => 2; + private static int Patch => 1; + private static int Hotfix => 0; public static ReleaseType ReleaseType => ReleaseType.Release; public static string FullVersion => $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}"; public static string DiscordNetVersion => Discord.DiscordConfig.Version;