Skip to content

Commit

Permalink
Update to V3.3 and change QuoteService.cs to not have a redundant usi…
Browse files Browse the repository at this point in the history
…ng statement.
  • Loading branch information
GreemDev committed Aug 6, 2020
1 parent 58f9f6b commit ad634fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/Services/QuoteService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
using System.Threading.Tasks;
using Discord.WebSocket;
using Discord;
using Discord.WebSocket;
using Gommon;
using Qmmands;
using Volte.Commands;
using Volte.Core.Models.EventArgs;

Expand Down
6 changes: 3 additions & 3 deletions src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ public static class Version
{
public static SysVer AsDotNetVersion() => new SysVer(Major, Minor, Patch, Hotfix);
private static int Major => 3;
private static int Minor => 2;
private static int Patch => 1;
private static int Hotfix => 1;
private static int Minor => 3;
private static int Patch => 0;
private static int Hotfix => 0;
public static DevelopmentStage ReleaseType => DevelopmentStage.Release;
public static string FullVersion => $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
public static string DiscordNetVersion => Discord.DiscordConfig.Version;
Expand Down

0 comments on commit ad634fe

Please sign in to comment.