summaryrefslogtreecommitdiff
path: root/mesonbuild/modules/__init__.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-07-14 13:04:18 -0700
committerEli Schwartz <eschwartz93@gmail.com>2022-08-17 16:25:36 -0400
commitc32f83a829b6b10a0cbc191c1368b563d4582c28 (patch)
treec302b8fc429e2473f86cdbbd89c2e482359f1f04 /mesonbuild/modules/__init__.py
parent6843f56f6b8e71e75c287de31686913eea5e4a44 (diff)
downloadmeson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.gz
modules: Add stabilization information to ModuleInfo
We're going to do more with this in the next commit, but this just adds the information for now. This allows the next commit have 100% mv changes for some of the modules, which makes review easier
Diffstat (limited to 'mesonbuild/modules/__init__.py')
-rw-r--r--mesonbuild/modules/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/modules/__init__.py b/mesonbuild/modules/__init__.py
index 068194026..de1cd5662 100644
--- a/mesonbuild/modules/__init__.py
+++ b/mesonbuild/modules/__init__.py
@@ -173,6 +173,8 @@ class ModuleInfo:
name: str
added: T.Optional[str] = None
deprecated: T.Optional[str] = None
+ unstable: bool = False
+ stabilized: T.Optional[str] = None
class NewExtensionModule(ModuleObject):