diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-07-14 13:04:18 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-08-17 16:25:36 -0400 |
commit | c32f83a829b6b10a0cbc191c1368b563d4582c28 (patch) | |
tree | c302b8fc429e2473f86cdbbd89c2e482359f1f04 /mesonbuild/modules/keyval.py | |
parent | 6843f56f6b8e71e75c287de31686913eea5e4a44 (diff) | |
download | meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.zip meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.gz meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.bz2 |
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/keyval.py')
-rw-r--r-- | mesonbuild/modules/keyval.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/keyval.py b/mesonbuild/modules/keyval.py index 94db567..e900a2b 100644 --- a/mesonbuild/modules/keyval.py +++ b/mesonbuild/modules/keyval.py @@ -25,7 +25,7 @@ if T.TYPE_CHECKING: class KeyvalModule(ExtensionModule): - INFO = ModuleInfo('keyval', '0.55.0') + INFO = ModuleInfo('keyval', '0.55.0', stabilized='0.56.0') def __init__(self, interp: 'Interpreter'): super().__init__(interp) |