From 66e11b52962e8173062e8630db649ece6325d204 Mon Sep 17 00:00:00 2001 From: Michael Ripley Date: Wed, 6 Apr 2022 08:09:53 -0500 Subject: [PATCH] Bump version to 1.9.0 --- NeosModLoader/ModLoader.cs | 2 +- NeosModLoader/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NeosModLoader/ModLoader.cs b/NeosModLoader/ModLoader.cs index ae443ff..766f1ab 100644 --- a/NeosModLoader/ModLoader.cs +++ b/NeosModLoader/ModLoader.cs @@ -12,7 +12,7 @@ public class ModLoader /// /// NeosModLoader's version /// - public static readonly string VERSION = "1.8.1"; + public static readonly string VERSION = "1.9.0"; private static readonly Type NEOS_MOD_TYPE = typeof(NeosMod); private static List LoadedMods = new List(); // used for mod enumeration internal static Dictionary AssemblyLookupMap = new Dictionary(); // used for logging diff --git a/NeosModLoader/Properties/AssemblyInfo.cs b/NeosModLoader/Properties/AssemblyInfo.cs index 1541ee4..eefb953 100644 --- a/NeosModLoader/Properties/AssemblyInfo.cs +++ b/NeosModLoader/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.8.1.0")] -[assembly: AssemblyFileVersion("1.8.1.0")] +[assembly: AssemblyVersion("1.9.0.0")] +[assembly: AssemblyFileVersion("1.9.0.0")]