diff --git a/Main.cs b/Main.cs index 3301e5f..a78f039 100644 --- a/Main.cs +++ b/Main.cs @@ -1,4 +1,5 @@ using Exiled.API.Features; +using System; using System.Collections.Generic; using System.IO; using Player = Exiled.Events.Handlers.Player; @@ -9,6 +10,7 @@ namespace XPSystem public class Main : Plugin { public static Main Instance { get; set; } + public override Version Version { get; } = new Version(1, 0, 5); private EventHandlers handlers; public static List players = new List(); diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 3a13c26..4c3a89c 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyFileVersion("1.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.0.5")] +[assembly: AssemblyFileVersion("1.0.5")] \ No newline at end of file