Compare commits
No commits in common. "ae696e17389dbebde3e6497266b4775154f6ecd6" and "41a65ef2e5723409c2f9a5727ea778bfe4196bc1" have entirely different histories.
ae696e1738
...
41a65ef2e5
7 changed files with 7 additions and 12 deletions
|
|
@ -1,9 +1,3 @@
|
||||||
## 1.2.0a53 (2026-01-05)
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- new tiramisu version support
|
|
||||||
|
|
||||||
## 1.2.0a52 (2026-01-03)
|
## 1.2.0a52 (2026-01-03)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "rougail"
|
name = "rougail"
|
||||||
version = "1.2.0a53"
|
version = "1.2.0a52"
|
||||||
|
|
||||||
[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.0a53"
|
version = "1.2.0a52"
|
||||||
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.0a53"
|
version = "1.2.0a52"
|
||||||
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.0a53",
|
"rougail-base == 1.2.0a52",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.flit.sdist]
|
[tool.flit.sdist]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "1.2.0a53"
|
__version__ = "1.2.0a52"
|
||||||
|
|
|
||||||
|
|
@ -290,6 +290,7 @@ types:
|
||||||
functions_files:
|
functions_files:
|
||||||
description: {_("File with functions")}
|
description: {_("File with functions")}
|
||||||
help: {_("This file contains filters and additional Jinja2 functions usable in structure files")}
|
help: {_("This file contains filters and additional Jinja2 functions usable in structure files")}
|
||||||
|
alternative_name: c
|
||||||
type: unix_filename
|
type: unix_filename
|
||||||
params:
|
params:
|
||||||
allow_relative: true
|
allow_relative: true
|
||||||
|
|
|
||||||
|
|
@ -496,7 +496,7 @@ class UserData:
|
||||||
# it's a function
|
# it's a function
|
||||||
params = tuple([ParamValue(val) for val in value[1:]])
|
params = tuple([ParamValue(val) for val in value[1:]])
|
||||||
value = Calculation(value[0], Params(params, kwargs={"option": ParamValue(option)}))
|
value = Calculation(value[0], Params(params, kwargs={"option": ParamValue(option)}))
|
||||||
option = option.forcepermissive
|
option.forcepermissive()
|
||||||
add_validation = True
|
add_validation = True
|
||||||
else:
|
else:
|
||||||
add_validation = False
|
add_validation = False
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue