diff --git a/extension.patch b/extension.patch index 4228c3fa1..7c2b8ac0f 100644 --- a/extension.patch +++ b/extension.patch @@ -32,7 +32,7 @@ index aeecf285..5f4289fb 100644 -bl_info = { - "name": "VRM format", - "author": "saturday06, iCyP", -- "version": (2, 20, 72), +- "version": (2, 20, 73), - "location": "File > Import-Export", - "description": "Import-Edit-Export VRM", - "blender": (2, 93, 0), diff --git a/src/io_scene_vrm/__init__.py b/src/io_scene_vrm/__init__.py index 8298de778..97244d7ed 100644 --- a/src/io_scene_vrm/__init__.py +++ b/src/io_scene_vrm/__init__.py @@ -15,7 +15,7 @@ bl_info = { "name": "VRM format", "author": "saturday06, iCyP", - "version": (2, 20, 72), + "version": (2, 20, 73), "location": "File > Import-Export", "description": "Import-Edit-Export VRM", "blender": (2, 93, 0), diff --git a/src/io_scene_vrm/blender_manifest.toml b/src/io_scene_vrm/blender_manifest.toml index aa268ff2a..a392afeab 100644 --- a/src/io_scene_vrm/blender_manifest.toml +++ b/src/io_scene_vrm/blender_manifest.toml @@ -1,7 +1,7 @@ schema_version = "1.0.0" id = "vrm" -version = "2.20.72" +version = "2.20.73" name = "VRM format" tagline = "VRM import, export and editing capabilities" maintainer = "Isamu Mogi " diff --git a/tests/test_common.py b/tests/test_common.py index f27b05c6c..240629781 100644 --- a/tests/test_common.py +++ b/tests/test_common.py @@ -16,7 +16,7 @@ class TestVersion(TestCase): def test_version(self) -> None: self.assertEqual( version.addon_version(), - (2, 20, 72), + (2, 20, 73), )