Compare commits

..

No commits in common. "bad47893d05ff530fe5d66addd38b0462808fa62" and "b087aa39f744129d8267d08945488dd3c670acea" have entirely different histories.

7 changed files with 7 additions and 14 deletions

View file

@ -1,9 +1,3 @@
## 1.2.0a47 (2025-12-22)
### Fix
- description
## 1.2.0a46 (2025-12-22) ## 1.2.0a46 (2025-12-22)
### Fix ### Fix

View file

@ -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 {3}" "chargement depuis {4}"
#: src/rougail/utils.py:56 #: src/rougail/utils.py:56
msgid "" msgid ""

View file

@ -1,6 +1,6 @@
[project] [project]
name = "rougail" name = "rougail"
version = "1.2.0a47" version = "1.2.0a46"
[tool.commitizen] [tool.commitizen]
name = "cz_conventional_commits" name = "cz_conventional_commits"

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail-base" name = "rougail-base"
version = "1.2.0a47" version = "1.2.0a46"
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"

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail" name = "rougail"
version = "1.2.0a47" version = "1.2.0a46"
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.0a47", "rougail-base == 1.2.0a46",
] ]
[tool.flit.sdist] [tool.flit.sdist]

View file

@ -1 +1 @@
__version__ = "1.2.0a47" __version__ = "1.2.0a46"

View file

@ -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,7 +530,6 @@ 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