mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-11-19 18:47:42 +01:00
13 lines
233 B
Python
13 lines
233 B
Python
""" Clip Interrorgator
|
|
"""
|
|
# We follow Semantic Versioning (https://semver.org/)
|
|
_MAJOR_VERSION = '1'
|
|
_MINOR_VERSION = '0'
|
|
_PATCH_VERSION = '0'
|
|
|
|
__version__ = '.'.join([
|
|
_MAJOR_VERSION,
|
|
_MINOR_VERSION,
|
|
_PATCH_VERSION,
|
|
])
|