Compare commits
No commits in common. "1.2.2" and "main" have entirely different histories.
6 changed files with 6 additions and 12 deletions
|
|
@ -1,9 +1,3 @@
|
||||||
## 1.2.2 (2026-08-21)
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- control if option is not just an unknown dyn family or dyn option
|
|
||||||
|
|
||||||
## 1.2.1 (2026-08-19)
|
## 1.2.1 (2026-08-19)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "rougail"
|
name = "rougail"
|
||||||
version = "1.2.2"
|
version = "1.2.1"
|
||||||
|
|
||||||
[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.2"
|
version = "1.2.1"
|
||||||
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.2"
|
version = "1.2.1"
|
||||||
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"
|
||||||
|
|
@ -27,7 +27,7 @@ classifiers = [
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ruamel.yaml ~= 0.19.1", # same version as rougail-user-data-yaml
|
"ruamel.yaml ~= 0.19.1", # same version as rougail-user-data-yaml
|
||||||
"pydantic ~= 2.13.4",
|
"pydantic ~= 2.13.4",
|
||||||
"rougail-base == 1.2.2",
|
"rougail-base == 1.2.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.flit.sdist]
|
[tool.flit.sdist]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "1.2.2"
|
__version__ = "1.2.1"
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ class UserData:
|
||||||
option.name()
|
option.name()
|
||||||
except (ConfigError, PropertiesOptionError):
|
except (ConfigError, PropertiesOptionError):
|
||||||
pass
|
pass
|
||||||
except (AttributeError, AttributeOptionError):
|
except AttributeError:
|
||||||
self._not_found_is_dynamic(self.config, path, cache, added, data[-1])
|
self._not_found_is_dynamic(self.config, path, cache, added, data[-1])
|
||||||
|
|
||||||
def _not_found_is_dynamic(self, config, path, cache, added, data):
|
def _not_found_is_dynamic(self, config, path, cache, added, data):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue