Skip to content

Commit

Permalink
V3.5: release notes coming
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Mar 15, 2021
1 parent b046d99 commit f51bf37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions src/Services/EvalService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,12 @@ await msg.ModifyAsync(m =>
}
}

private readonly ReadOnlyList<string> _imports = new ReadOnlyList<string>(new ReadOnlyList<string>(
new List<string>
private readonly ReadOnlyList<string> _imports = new(new List<string>
{
"System", "System.Collections.Generic", "System.Linq", "System.Text", "Volte.Commands.TypeParsers",
"System.Diagnostics", "Discord", "Discord.WebSocket", "System.IO", "Humanizer",
"System.Threading", "Gommon", "Volte.Core.Entities", "System.Globalization",
"Volte.Core", "Volte.Services", "System.Threading.Tasks", "Qmmands"
}));
"Volte.Core", "Volte.Services", "System.Threading.Tasks", "Qmmands", "Volte.Core.Helpers"
});
}
}
4 changes: 2 additions & 2 deletions src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ public static class Version
{
public static SysVer AsDotNetVersion() => new(Major, Minor, Patch, Hotfix);
private static int Major => 3;
private static int Minor => 4;
private static int Patch => 1;
private static int Minor => 5;
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}";
Expand Down

0 comments on commit f51bf37

Please sign in to comment.