Files
cimtechniques-service-suite/cim_suite/modules/iomodbus/__init__.py
Andy 63169a7644 feat: add versioning and changelog system
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>
2026-06-06 11:31:22 -04:00

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__"]