Files
nostrdvm/nostr_dvm/__init__.py
2023-12-13 20:00:03 +01:00

10 lines
205 B
Python

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '0'
_PATCH_VERSION = '1'
__version__ = '.'.join([
_MAJOR_VERSION,
_MINOR_VERSION,
_PATCH_VERSION,
])