Skip to content

Commit

Permalink
Merge pull request #10 from ynput/bugfix/add-version-number-to-addon
Browse files Browse the repository at this point in the history
Bug: add version number
  • Loading branch information
antirotor authored Jun 11, 2024
2 parents 291b456 + ab6ff65 commit 73baa1b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions client/ayon_usd/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from ayon_core.modules import AYONAddon, ITrayModule
from .utils import is_usd_download_needed, get_downloaded_usd_root
from .version import __version__

USD_ADDON_DIR = os.path.dirname(os.path.abspath(__file__))

Expand All @@ -17,6 +18,7 @@ class USDAddon(AYONAddon, ITrayModule):
"""

name = "ayon_usd"
version = __version__
_download_window = None

def tray_init(self):
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_usd/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
Do not manually edit this file.
"""
name = "ayon_usd"
__version__ = "1.0.2"
__version__ = "1.0.3-dev.1"
4 changes: 3 additions & 1 deletion create_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,9 @@ def main(
keep_sources (bool): Keep sources when server package is created.
"""
log = logging.getLogger("create_package")
logging.basicConfig(level=logging.INFO)
log = logging.getLogger("create_package", level=logging.INFO)

log.info("Start creating package")

current_dir = os.path.dirname(os.path.abspath(__file__))
Expand Down
4 changes: 2 additions & 2 deletions package.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""AYON USD Addon package file."""
name = "ayon_usd"
title = "AYON Addon providing USD support"
version = "1.0.2"
title = "AYON USD support"
version = "1.0.3-dev.1"
client_dir = "ayon_usd"

services = {}
Expand Down

0 comments on commit 73baa1b

Please sign in to comment.