bump version v0.0.4
This commit is contained in:
parent
490723496c
commit
b40d49c723
3 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
||||||
/ ___ \| |_) | |___ ___) | |_| |
|
/ ___ \| |_) | |___ ___) | |_| |
|
||||||
/_/ \_\____/ \____|____/|____/
|
/_/ \_\____/ \____|____/|____/
|
||||||
```
|
```
|
||||||
|
v0.0.4
|
||||||
|
|
||||||
Convenience tool to work with 3D typography in Blender and Cinema4D.
|
Convenience tool to work with 3D typography in Blender and Cinema4D.
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ import importlib
|
||||||
bl_info = {
|
bl_info = {
|
||||||
"name": "ABC3D",
|
"name": "ABC3D",
|
||||||
"author": "Jakob Schlötter, Studio Pointer*",
|
"author": "Jakob Schlötter, Studio Pointer*",
|
||||||
"version": (0, 0, 3),
|
"version": (0, 0, 4),
|
||||||
"blender": (4, 1, 0),
|
"blender": (4, 1, 0),
|
||||||
"location": "VIEW3D",
|
"location": "VIEW3D",
|
||||||
"description": "Convenience addon for 3D fonts",
|
"description": "Convenience addon for 3D fonts",
|
||||||
|
|
|
@ -4,7 +4,7 @@ def get_version_major():
|
||||||
def get_version_minor():
|
def get_version_minor():
|
||||||
return 0
|
return 0
|
||||||
def get_version_patch():
|
def get_version_patch():
|
||||||
return 3
|
return 4
|
||||||
def get_version_string():
|
def get_version_string():
|
||||||
return f"{get_version_major()}.{get_version_minor()}.{get_version_patch}"
|
return f"{get_version_major()}.{get_version_minor()}.{get_version_patch}"
|
||||||
def prefix():
|
def prefix():
|
||||||
|
|
Loading…
Reference in a new issue