File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 55- Enhancement: Use tables in the generated sphinx code for topic/domains.
66 [ jensens, 02-11-2025]
77
8+ - Feature: Add ` --version ` (` -v ` ) command line flag to display mxmake version.
9+ [ jensens, 02-11-2025]
10+
811## 2.0.0 (2025-10-24)
912
1013- ** Breaking** : Drop Python 3.9 support. Minimum Python version is now 3.10.
Original file line number Diff line number Diff line change 1+ from ._version import __version__
12from .helpgen import print_help
23from .parser import MakefileParser
34from .templates import ci_template
2728
2829
2930parser = argparse .ArgumentParser ()
31+ parser .add_argument (
32+ "-v" ,
33+ "--version" ,
34+ action = "version" ,
35+ version = f"%(prog)s { __version__ } " ,
36+ )
3037command_parsers = parser .add_subparsers (dest = "command" , required = True )
3138
3239
You can’t perform that action at this time.
0 commit comments