User Story
As a QType developer, I want to check the installed version using qtype --version so that I can verify which version I'm running and report issues accurately.
Problem/Motivation
Currently there's no way to check the QType version from the CLI. Users need to manually inspect package metadata or use pip show qtype to determine their version, which is cumbersome during debugging or issue reporting.
Use Cases
- Bug reporting: Include accurate version information in GitHub issues
- Troubleshooting: Verify if running the latest version before debugging
- CI/CD pipelines: Confirm correct version installed in automated environments
- Team coordination: Ensure all developers are using the same version
Example:
$ qtype --version
qtype 0.1.16
$ qtype -v
qtype 0.1.16
User Story
As a QType developer, I want to check the installed version using
qtype --versionso that I can verify which version I'm running and report issues accurately.Problem/Motivation
Currently there's no way to check the QType version from the CLI. Users need to manually inspect package metadata or use
pip show qtypeto determine their version, which is cumbersome during debugging or issue reporting.Use Cases
Example: