Compare commits
2 commits
7ae683149a
...
4afd81266c
| Author | SHA1 | Date | |
|---|---|---|---|
| 4afd81266c | |||
| 1d05ffa7cd |
4 changed files with 8 additions and 7 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## 0.1.0a6 (2025-10-16)
|
||||
|
||||
### Fix
|
||||
|
||||
- do not remove force_default_on_freeze
|
||||
|
||||
## 0.1.0a5 (2025-06-18)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.structural_bitwarden"
|
||||
version = "0.1.0a5"
|
||||
version = "0.1.0a6"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail structural Bitwarden"
|
||||
|
|
@ -13,9 +13,6 @@ license = {file = "LICENSE"}
|
|||
classifiers = [
|
||||
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: 3.13",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.0a5"
|
||||
__version__ = "0.1.0a6"
|
||||
|
|
|
|||
|
|
@ -47,6 +47,4 @@ 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')
|
||||
variable.default = variable.secret_manager
|
||||
|
|
|
|||
Loading…
Reference in a new issue