Skip to content

Commit

Permalink
Update version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
natm authored Nov 4, 2024
1 parent ed0a0ac commit 5d8848c
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion netbox_acls/version.py
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
__version__ = "1.7.0"
#!/usr/bin/env python
"""Version stamp."""

# These properties are injected at build time by the build process.

__commit_hash__ = "unknown"
__track__ = "dev"
__version__ = "0.0.0"


def version_display():
"""Display the version, track and hash together."""
return f"v{__version__}-{__track__}-{__commit_hash__}"


def version_semver():
"""Semantic version."""
return __version__

0 comments on commit 5d8848c

Please sign in to comment.