From 59edb2e786ec5001a648339291ac6fd0d66b810a Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Sat, 31 May 2025 20:01:41 +0200 Subject: [PATCH] bump version to v0.0.11 --- README.md | 6 ++---- __init__.py | 2 +- common/utils.py | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7316d62..ee15c47 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,8 @@ / ___ \| |_) | |___ ___) | |_| | /_/ \_\____/ \____|____/|____/ ``` -v0.0.10 +v0.0.11 -Convenience tool to work with 3D typography in Blender and Cinema4D. - -Install as you would normally install an addon. +Convenience addon to work with 3D typography in Blender and Cinema4D. Instructions for development in [CONTRIBUTING,md](./CONTRIBUTING.md). diff --git a/__init__.py b/__init__.py index c27a677..9ed5a48 100644 --- a/__init__.py +++ b/__init__.py @@ -16,7 +16,7 @@ from .common import Font, utils bl_info = { "name": "ABC3D", "author": "Jakob Schlötter, Studio Pointer*", - "version": (0, 0, 10), + "version": (0, 0, 11), "blender": (4, 1, 0), "location": "VIEW3D", "description": "Convenience addon for 3D fonts", diff --git a/common/utils.py b/common/utils.py index 743b7cd..4a036f8 100644 --- a/common/utils.py +++ b/common/utils.py @@ -8,7 +8,7 @@ def get_version_minor(): def get_version_patch(): - return 10 + return 11 def get_version_string():