Version information for appimage-updater.
get_version()
Get the package version.
Source code in src/appimage_updater/_version.py
| def get_version() -> str:
"""Get the package version."""
# noinspection PyBroadException
try:
return _version("appimage-updater")
except Exception: # Catch any package not found error
return "0.1.0" # Fallback for development
|