diff --git a/Editor/Scripts/OnScriptsReloadHandler.cs b/Editor/Scripts/OnScriptsReloadHandler.cs index 2c98612d..1dacb044 100644 --- a/Editor/Scripts/OnScriptsReloadHandler.cs +++ b/Editor/Scripts/OnScriptsReloadHandler.cs @@ -42,7 +42,7 @@ static void Progress() if (package.name == "com.atteneder.gltfast") { var version = package.version; if (Export.Constants.version != version) { - Debug.LogWarning($"Version mismatch in GltfGlobals.cs (is {Export.Constants.version}, should be {version}). Please update!"); + Debug.LogWarning($"Version mismatch in Constants.cs (is {Export.Constants.version}, should be {version}). Please update!"); } } } diff --git a/Runtime/Scripts/Export/Constants.cs b/Runtime/Scripts/Export/Constants.cs index 41ccce99..4bd0e9b2 100644 --- a/Runtime/Scripts/Export/Constants.cs +++ b/Runtime/Scripts/Export/Constants.cs @@ -17,6 +17,6 @@ namespace GLTFast.Export { static class Constants { - public const string version = "4.4.0-preview.1"; + public const string version = "4.4.0"; } } diff --git a/package.json b/package.json index 679adb20..b8ff4c26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.atteneder.gltfast", - "version": "4.4.0-preview.1", + "version": "4.4.0", "displayName": "glTFast", "description": "Load glTF 3D files fast at runtime or import them into the asset database in the Editor", "unity": "2019.4", @@ -29,4 +29,4 @@ }, "type": "library", "unityRelease": "7f1" -} +} \ No newline at end of file