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