bump version and add version to client addon

This commit is contained in:
Jakub Trllo 2024-06-06 17:43:41 +02:00
parent b92b7f5231
commit 196d307a57
4 changed files with 17 additions and 1 deletions

View file

@ -1,6 +1,9 @@
from .version import __version__
from .addon import UnrealAddon
__all__ = (
"__version__",
"UnrealAddon",
)

View file

@ -2,11 +2,14 @@ import os
import re
from ayon_core.addon import AYONAddon, IHostAddon
from .version import __version__
UNREAL_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class UnrealAddon(AYONAddon, IHostAddon):
name = "unreal"
version = __version__
host_name = "unreal"
def get_global_environments(self):

View file

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'unreal' version."""
__version__ = "0.2.0"

View file

@ -1,3 +1,10 @@
name = "unreal"
title = "Unreal"
version = "0.1.0"
version = "0.2.0"
client_dir = "ayon_unreal"
ayon_required_addons = {
"core": ">0.3.2",
}
ayon_compatible_addons = {}