Compare commits

..

2 commits

Author SHA1 Message Date
bad47893d0 bump: version 1.2.0a46 → 1.2.0a47 2025-12-22 11:47:44 +01:00
57894d09b1 fix: description 2025-12-22 11:47:35 +01:00
7 changed files with 14 additions and 7 deletions

View file

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

View file

@ -1027,7 +1027,7 @@ msgid ""
"from {3}"
msgstr ""
"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
msgid ""

View file

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

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail-base"
version = "1.2.0a46"
version = "1.2.0a47"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
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]
name = "rougail"
version = "1.2.0a46"
version = "1.2.0a47"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
description = "A consistency handling system that was initially designed in the configuration management"
classifiers = [
@ -18,7 +18,7 @@ classifiers = [
dependencies = [
"ruamel.yaml ~= 0.18.6",
"pydantic ~= 2.9.2",
"rougail-base == 1.2.0a46",
"rougail-base == 1.2.0a47",
]
[tool.flit.sdist]

View file

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

View file

@ -474,7 +474,7 @@ secret_manager: # {_("The secret manager")}
""".replace(
"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"))
elif objects:
rougail_process += " default: {DEFAULT}".format(
@ -530,6 +530,7 @@ default_params:
for choice in choices:
rougail_process += f" - {choice}\n"
rougail_options += rougail_process
print(rougail_options)
return processes, processes_empty, rougail_options