From 78337653fce90d6745d2ce46eaba9d25ab9e18d2 Mon Sep 17 00:00:00 2001 From: Milan Hauth Date: Sat, 5 Aug 2023 09:32:17 +0200 Subject: fixup: since: 1.1.0 -> 1.3.0 --- docs/yaml/objects/compiler.yaml | 2 +- mesonbuild/interpreter/compiler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/yaml/objects/compiler.yaml b/docs/yaml/objects/compiler.yaml index 14b61a876..3ba9c44db 100644 --- a/docs/yaml/objects/compiler.yaml +++ b/docs/yaml/objects/compiler.yaml @@ -150,7 +150,7 @@ methods: required: type: bool | feature default: false - since: 1.1.0 + since: 1.3.0 description: When set to `true`, Meson will halt if the check fails. diff --git a/mesonbuild/interpreter/compiler.py b/mesonbuild/interpreter/compiler.py index 434587427..fe30195d5 100644 --- a/mesonbuild/interpreter/compiler.py +++ b/mesonbuild/interpreter/compiler.py @@ -172,7 +172,7 @@ _COMMON_KWS: T.List[KwargInfo] = [_ARGS_KW, _DEPENDENCIES_KW, _INCLUDE_DIRS_KW, _COMPILES_KWS: T.List[KwargInfo] = [_NAME_KW, _ARGS_KW, _DEPENDENCIES_KW, _INCLUDE_DIRS_KW, _NO_BUILTIN_ARGS_KW] _HEADER_KWS: T.List[KwargInfo] = [REQUIRED_KW.evolve(since='0.50.0', default=False), *_COMMON_KWS] -_HAS_REQUIRED_KW = REQUIRED_KW.evolve(since='1.1.0', default=False) +_HAS_REQUIRED_KW = REQUIRED_KW.evolve(since='1.3.0', default=False) class CompilerHolder(ObjectHolder['Compiler']): preprocess_uid: T.Dict[str, itertools.count] = collections.defaultdict(itertools.count) -- cgit v1.2.3