Compare commits
No commits in common. "01aa36c1d7e16784be53bd4b4497de5fda177465" and "27ee7f0f1b607fed721e917655587f9f48559c1a" have entirely different histories.
01aa36c1d7
...
27ee7f0f1b
6 changed files with 13 additions and 15 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 0.2.0a21 (2025-09-29)
|
||||
|
||||
### Feat
|
||||
|
||||
- add cli.read_write option
|
||||
|
||||
## 0.2.0a20 (2025-09-22)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.cli"
|
||||
version = "0.2.0a21"
|
||||
version = "0.2.0a20"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "CLI for Rougail"
|
||||
|
|
|
|||
|
|
@ -205,7 +205,7 @@ def _main(arguments, do_not_print):
|
|||
err_warn["errors"].extend(ret["errors"])
|
||||
err_warn["warnings"].extend(ret["warnings"])
|
||||
# output
|
||||
if config and not rougailconfig["cli.load_config"]:
|
||||
if config:
|
||||
config.property.read_only()
|
||||
output_name = rougailconfig["step.output"]
|
||||
path = Path(__file__).parent.parent / ("output_" + output_name) / "__init__.py"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.2.0a21"
|
||||
__version__ = "0.2.0a20"
|
||||
|
|
|
|||
|
|
@ -35,17 +35,21 @@ cli:
|
|||
allow_relative: true
|
||||
default: .rougailcli.yml
|
||||
|
||||
debug: false # {_('Displays debug informations')}
|
||||
debug:
|
||||
description: {_('Displays debug informations')}
|
||||
default: false
|
||||
|
||||
warnings: true # {_('Displays command line option warnings informations')}
|
||||
warnings:
|
||||
description: {_('Displays command line option warnings informations')}
|
||||
default: true
|
||||
|
||||
versions: false # {_('Displays Rougail version and all its components')}
|
||||
versions:
|
||||
description: {_('Displays Rougail version and all its components')}
|
||||
default: false
|
||||
|
||||
load_config:
|
||||
default: true
|
||||
hidden: true
|
||||
|
||||
read_write: false # {_('Configuration in output step is in read_write mode')}
|
||||
"""
|
||||
return {
|
||||
"options": options,
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
["tiramisu: 5.2.0a10", "tiramisu-cmdline-parser: 0.7.0a1", "rougail: 1.2.0a31", "rougail-cli: 0.2.0a20", "rougail-structural-bitwarden: 0.1.0a5", "rougail-user-data-ansible: 0.1.0a3", "rougail-user-data-bitwarden: 0.1.0a21", "rougail-user-data-environment: 0.1.0a10", "rougail-user-data-yaml: 0.2.0a12", "rougail-output-ansible: 0.2.0a13", "rougail-output-console: 0.2.0a12", "rougail-output-doc: 0.2.0a25", "rougail-output-json: 0.2.0a9"]
|
||||
["tiramisu: 5.2.0a10", "tiramisu-cmdline-parser: 0.7.0a1", "rougail: 1.2.0a30", "rougail-cli: 0.2.0a19", "rougail-structural-bitwarden: 0.1.0a5", "rougail-user-data-ansible: 0.1.0a3", "rougail-user-data-bitwarden: 0.1.0a21", "rougail-user-data-environment: 0.1.0a9", "rougail-user-data-yaml: 0.2.0a11", "rougail-output-ansible: 0.2.0a12", "rougail-output-console: 0.2.0a11", "rougail-output-doc: 0.2.0a25", "rougail-output-json: 0.2.0a8"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue