Skip to content

Commit

Permalink
Update Version.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev authored Jul 13, 2020
1 parent 504a945 commit 054134a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static class Version
private static int Minor => 2;
private static int Patch => 0;
private static int Hotfix => 0;
public static ReleaseType ReleaseType => ReleaseType.Development;
public static ReleaseType ReleaseType => ReleaseType.Release;
public static string FullVersion => $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
public static string DiscordNetVersion => Discord.DiscordConfig.Version;
}
Expand All @@ -19,4 +19,4 @@ public enum ReleaseType
Development,
Release
}
}
}

0 comments on commit 054134a

Please sign in to comment.