From 7378848f447852068342f2ea868656d89b40d772 Mon Sep 17 00:00:00 2001 From: Isamu Mogi Date: Sat, 22 Jun 2024 17:23:45 +0900 Subject: [PATCH] chore: bump version to 2.20.60 --- 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 d7c4eca74..7b827e706 100644 --- a/extension.patch +++ b/extension.patch @@ -20,7 +20,7 @@ index 19594bdd..5f4289fb 100644 -bl_info = { - "name": "VRM format", - "author": "saturday06, iCyP", -- "version": (2, 20, 58), +- "version": (2, 20, 60), - "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 19594bdd7..046c9db81 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, 58), + "version": (2, 20, 60), "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 1bf84a2c9..6a2d08dc2 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.58" +version = "2.20.60" 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 9d5b4017d..fc1e9ddfb 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, 58), + (2, 20, 60), )