Compare commits
2 commits
b087aa39f7
...
bad47893d0
| Author | SHA1 | Date | |
|---|---|---|---|
| bad47893d0 | |||
| 57894d09b1 |
7 changed files with 14 additions and 7 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 1.2.0a47 (2025-12-22)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- description
|
||||||
|
|
||||||
## 1.2.0a46 (2025-12-22)
|
## 1.2.0a46 (2025-12-22)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -1027,7 +1027,7 @@ msgid ""
|
||||||
"from {3}"
|
"from {3}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"la valeur \"{0}\" est un {1} invalide pour {2}, elle sera ignorée lors du "
|
"la valeur \"{0}\" est un {1} invalide pour {2}, elle sera ignorée lors du "
|
||||||
"chargement depuis {4}"
|
"chargement depuis {3}"
|
||||||
|
|
||||||
#: src/rougail/utils.py:56
|
#: src/rougail/utils.py:56
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "rougail"
|
name = "rougail"
|
||||||
version = "1.2.0a46"
|
version = "1.2.0a47"
|
||||||
|
|
||||||
[tool.commitizen]
|
[tool.commitizen]
|
||||||
name = "cz_conventional_commits"
|
name = "cz_conventional_commits"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail-base"
|
name = "rougail-base"
|
||||||
version = "1.2.0a46"
|
version = "1.2.0a47"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "A consistency handling system that was initially designed in the configuration management"
|
description = "A consistency handling system that was initially designed in the configuration management"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail"
|
name = "rougail"
|
||||||
version = "1.2.0a46"
|
version = "1.2.0a47"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
description = "A consistency handling system that was initially designed in the configuration management"
|
description = "A consistency handling system that was initially designed in the configuration management"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
|
@ -18,7 +18,7 @@ classifiers = [
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ruamel.yaml ~= 0.18.6",
|
"ruamel.yaml ~= 0.18.6",
|
||||||
"pydantic ~= 2.9.2",
|
"pydantic ~= 2.9.2",
|
||||||
"rougail-base == 1.2.0a46",
|
"rougail-base == 1.2.0a47",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.flit.sdist]
|
[tool.flit.sdist]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "1.2.0a46"
|
__version__ = "1.2.0a47"
|
||||||
|
|
|
||||||
|
|
@ -474,7 +474,7 @@ secret_manager: # {_("The secret manager")}
|
||||||
""".replace(
|
""".replace(
|
||||||
"NAME", hidden_output
|
"NAME", hidden_output
|
||||||
)
|
)
|
||||||
rougail_process += f""" description: _('outputs {0} did not allow user data')
|
rougail_process += f""" description: {_('outputs {0} did not allow user data')}
|
||||||
""".format(display_list(hidden_outputs, add_quote=True, separator="or"))
|
""".format(display_list(hidden_outputs, add_quote=True, separator="or"))
|
||||||
elif objects:
|
elif objects:
|
||||||
rougail_process += " default: {DEFAULT}".format(
|
rougail_process += " default: {DEFAULT}".format(
|
||||||
|
|
@ -530,6 +530,7 @@ default_params:
|
||||||
for choice in choices:
|
for choice in choices:
|
||||||
rougail_process += f" - {choice}\n"
|
rougail_process += f" - {choice}\n"
|
||||||
rougail_options += rougail_process
|
rougail_options += rougail_process
|
||||||
|
print(rougail_options)
|
||||||
return processes, processes_empty, rougail_options
|
return processes, processes_empty, rougail_options
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue