Conventional-Commit-driven version bumps (scripts/bump.py), a commit-msg validation hook, and a /release-notes workflow that produces a human-reviewed CHANGELOG.md. Adds an in-app version badge + 'What's new' dialog on the launcher. The version is single-sourced from pyproject.toml (cim_suite.__version__), and the deterministic bump backbone lives in scripts/release/ with tests in tests/release/. Marks the 1.0.0 baseline. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
364 B
Python
10 lines
364 B
Python
"""IOModbus Service Utility — module #3 of the CIMTechniques Service Suite.
|
|
|
|
A config-driven Modbus RTU master (rebuild of the legacy VB6 ``IOModbus.exe``). See
|
|
``docs/superpowers/specs/2026-06-03-iomodbus-service-tool-rebuild-design.md``.
|
|
"""
|
|
|
|
from cim_suite import __version__ # one suite-wide version (single-sourced in pyproject)
|
|
|
|
__all__ = ["__version__"]
|