From dd4077f808280c66ad9d5d57827b4bcae819af5c Mon Sep 17 00:00:00 2001 From: Gunnar Andersson Date: Wed, 23 Nov 2022 12:23:53 +0100 Subject: [PATCH] vsc_ast.py: Implement version_label Signed-off-by: Gunnar Andersson --- vsc/model/vsc_ast.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vsc/model/vsc_ast.py b/vsc/model/vsc_ast.py index 3610e1a8..d09b31a2 100644 --- a/vsc/model/vsc_ast.py +++ b/vsc/model/vsc_ast.py @@ -483,6 +483,9 @@ class Namespace: minor_version: Optional[int] = None """ Provides the minor version of the namespace. """ + version_label: Optional[str] = str() + """ A free-form string that contains any additional information about the content/version """ + events: Optional[List[Event]] = field(default_factory=EmptyList) """ Contains a list of the events in a given namespace """