bump version to v0.0.11

This commit is contained in:
jrkb 2025-05-31 20:01:41 +02:00
parent bb0a5a4a2c
commit 59edb2e786
3 changed files with 4 additions and 6 deletions

View file

@ -5,10 +5,8 @@
/ ___ \| |_) | |___ ___) | |_| | / ___ \| |_) | |___ ___) | |_| |
/_/ \_\____/ \____|____/|____/ /_/ \_\____/ \____|____/|____/
``` ```
v0.0.10 v0.0.11
Convenience tool to work with 3D typography in Blender and Cinema4D. Convenience addon to work with 3D typography in Blender and Cinema4D.
Install as you would normally install an addon.
Instructions for development in [CONTRIBUTING,md](./CONTRIBUTING.md). Instructions for development in [CONTRIBUTING,md](./CONTRIBUTING.md).

View file

@ -16,7 +16,7 @@ from .common import Font, utils
bl_info = { bl_info = {
"name": "ABC3D", "name": "ABC3D",
"author": "Jakob Schlötter, Studio Pointer*", "author": "Jakob Schlötter, Studio Pointer*",
"version": (0, 0, 10), "version": (0, 0, 11),
"blender": (4, 1, 0), "blender": (4, 1, 0),
"location": "VIEW3D", "location": "VIEW3D",
"description": "Convenience addon for 3D fonts", "description": "Convenience addon for 3D fonts",

View file

@ -8,7 +8,7 @@ def get_version_minor():
def get_version_patch(): def get_version_patch():
return 10 return 11
def get_version_string(): def get_version_string():