diff --git a/README.md b/README.md index 3c165bb..1033491 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ KeybindLib is a Slime Rancher library mod for adding new keybinds. -**WARNING: KeybindLib is still in the process of being tested right now and is in pre-release.** - ## Usage ### End Users @@ -41,7 +39,7 @@ You also need to add this mod as a dependency of your mod, and you'll need to ad "description": "Allows you to air-dash!", "version": "1.0", "dependencies": [ - "keybindlib" + "keybindlib 1.0" ], "load_before": [ "keybindlib" diff --git a/src/ExampleMod/Properties/AssemblyInfo.cs b/src/ExampleMod/Properties/AssemblyInfo.cs index ecc54e7..e75c125 100644 --- a/src/ExampleMod/Properties/AssemblyInfo.cs +++ b/src/ExampleMod/Properties/AssemblyInfo.cs @@ -3,7 +3,7 @@ [assembly: AssemblyTitle("KeybindLib.ExampleMod")] [assembly: AssemblyCopyright("Esper Thomson")] [assembly: AssemblyDescription("A Slime Rancher mod for testing KeybindLib.")] -[assembly: AssemblyVersion("0.1.*")] +[assembly: AssemblyVersion("1.0.*")] #if DEBUG [assembly: AssemblyConfiguration("DEBUG")] diff --git a/src/ExampleMod/modinfo.json b/src/ExampleMod/modinfo.json index 7a15ad7..b4e765f 100644 --- a/src/ExampleMod/modinfo.json +++ b/src/ExampleMod/modinfo.json @@ -1,9 +1,9 @@ { "id": "keybindlib-examplemod", "name": "KeybindLib Example Mod", - "version": "0.1", + "version": "1.0", "author": "Esper89", "description": "Example mod for testing KeybindLib.", - "dependencies": [ "keybindlib 0.1" ], + "dependencies": [ "keybindlib 1.0" ], "load_before": [ "keybindlib" ] } diff --git a/src/KeybindLib/Properties/AssemblyInfo.cs b/src/KeybindLib/Properties/AssemblyInfo.cs index 4fdc9f4..7803de8 100644 --- a/src/KeybindLib/Properties/AssemblyInfo.cs +++ b/src/KeybindLib/Properties/AssemblyInfo.cs @@ -18,7 +18,7 @@ [assembly: AssemblyTitle("KeybindLib")] [assembly: AssemblyCopyright("Esper Thomson")] [assembly: AssemblyDescription("A Slime Rancher library mod for adding new keybinds.")] -[assembly: AssemblyVersion("0.1.*")] +[assembly: AssemblyVersion("1.0.*")] #if DEBUG [assembly: AssemblyConfiguration("DEBUG")] diff --git a/src/KeybindLib/modinfo.json b/src/KeybindLib/modinfo.json index 9f81e95..c21f873 100644 --- a/src/KeybindLib/modinfo.json +++ b/src/KeybindLib/modinfo.json @@ -1,7 +1,7 @@ { "id": "keybindlib", "name": "KeybindLib", - "version": "0.1", + "version": "1.0", "author": "Esper89", "description": "Library mod for adding new keybinds.\n\nLicensed under the GNU General Public License version 3 or later.\nSource code at .", "load_after": [ "translationapi" ]