From fb5b12e42ef2255aaf6ab43cb426955257302531 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Tue, 19 Jan 2021 10:22:57 +0100 Subject: [PATCH] [lit] Harmonize lit and llvm versionning In addition to consistency, we'll hit a wall when 11.1.0 gets released, because we cannot represent it with lit versioning scheme. Differential Revision: https://reviews.llvm.org/D94157 --- llvm/utils/lit/lit/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/lit/lit/__init__.py b/llvm/utils/lit/lit/__init__.py index d7b845e9077..9c2aa512e17 100644 --- a/llvm/utils/lit/lit/__init__.py +++ b/llvm/utils/lit/lit/__init__.py @@ -2,7 +2,7 @@ __author__ = 'Daniel Dunbar' __email__ = 'daniel@minormatter.com' -__versioninfo__ = (0, 12, 0) +__versioninfo__ = (12, 0, 0) __version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev' __all__ = [] -- 2.11.0