diff --git a/extension.patch b/extension.patch index 148a390cb..8738fdf21 100644 --- a/extension.patch +++ b/extension.patch @@ -20,7 +20,7 @@ index d4b623f0..5f4289fb 100644 -bl_info = { - "name": "VRM format", - "author": "saturday06, iCyP", -- "version": (2, 20, 47), +- "version": (2, 20, 48), - "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 e86cb6573..a41ca8988 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, 47), + "version": (2, 20, 48), "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 cd463b0af..5d8a8a3f1 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.47" +version = "2.20.48" 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 67cffe356..c909c07d3 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, 47), + (2, 20, 48), )