Skip to content

Commit

Permalink
version bumped and release type changed
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed May 11, 2019
1 parent b436a81 commit d0d14d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ namespace Volte
public static class Version
{
internal static int Major { get; } = 2;
internal static int Minor { get; } = 3;
internal static int Patch { get; } = 1;
internal static int Minor { get; } = 4;
internal static int Patch { get; } = 0;
internal static int Hotfix { get; } = 0;
public static ReleaseType ReleaseType { get; } = ReleaseType.Development;
public static ReleaseType ReleaseType { get; } = ReleaseType.Release;
public static string FullVersion { get; } = $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
public static string DiscordNetVersion { get; } = DiscordConfig.Version;
}
Expand Down

0 comments on commit d0d14d0

Please sign in to comment.