Compare commits

..

2 commits

Author SHA1 Message Date
60c0db5d1d bump: version 0.1.0a1 → 0.1.0a2 2025-02-17 15:39:58 +01:00
35f9d9195f fix: support hidden attribut 2025-02-17 15:39:39 +01:00
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
## 0.1.0a2 (2025-02-17)
### Fix
- support hidden attribut
## 0.1.0a1 (2025-02-17)
### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.structural_bitwarden"
version = "0.1.0a1"
version = "0.1.0a2"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail structural Bitwarden"

View file

@ -65,3 +65,5 @@ class Annotator(Walk):
self.objectspace.informations.add(path, "bitwarden", True)
self.objectspace.informations.add(path, "default_value_makes_sense", False)
self.objectspace.properties.add(path, "novalidator", True)
if 'force_default_on_freeze' in self.objectspace.properties.get(path):
self.objectspace.properties.remove(path, 'force_default_on_freeze')