Compare commits

..

2 commits

7 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,9 @@
## 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

View file

@ -1,6 +1,6 @@
[project] [project]
name = "rougail" name = "rougail"
version = "1.2.0a52" version = "1.2.0a53"
[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.0a52" version = "1.2.0a53"
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.0a52" version = "1.2.0a53"
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.0a52", "rougail-base == 1.2.0a53",
] ]
[tool.flit.sdist] [tool.flit.sdist]

View file

@ -1 +1 @@
__version__ = "1.2.0a52" __version__ = "1.2.0a53"

View file

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

View file

@ -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.forcepermissive() option = option.forcepermissive
add_validation = True add_validation = True
else: else:
add_validation = False add_validation = False