Lines Matching refs:version
52 def applyVersionToLine(self, line: str, version: Version) -> Union[str, None]:
55 def applyVersion(self, version: Version):
61 line_with_version = self.applyVersionToLine(line, version)
80 def applyVersionToLine(self, line: str, version: Version):
82 repl = r'\g<1>' + str(version)
91 def applyVersionToLine(self, line: str, version: Version):
93 'LVGL_VERSION_MAJOR': version.major,
94 'LVGL_VERSION_MINOR': version.minor,
95 'LVGL_VERSION_PATCH': version.patch,
96 'LVGL_VERSION_INFO': version.info,
131 def applyVersionToLine(self, line: str, version: Version):
133 'LVGL_VERSION_MAJOR': version.major,
134 'LVGL_VERSION_MINOR': version.minor,
135 'LVGL_VERSION_PATCH': version.patch,
158 version = Version(args.version) variable
168 if version.is_release:
177 target.applyVersion(version)