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)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "rougail"
|
||||
version = "1.2.0a46"
|
||||
version = "1.2.0a47"
|
||||
|
||||
[tool.commitizen]
|
||||
name = "cz_conventional_commits"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "1.2.0a46"
|
||||
__version__ = "1.2.0a47"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue