From 62b52cfe89fbc22b8f46b04763b127cd47c9acf4 Mon Sep 17 00:00:00 2001 From: Isamu Mogi Date: Sun, 19 May 2024 14:48:48 +0900 Subject: [PATCH] chore: bump version to 2.20.48 --- extension.patch | 2 +- src/io_scene_vrm/__init__.py | 2 +- src/io_scene_vrm/blender_manifest.toml | 2 +- tests/test_common.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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), )