[PATCH] D94157: [lit] Harmonize lit and llvm versionning

serge via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 5 23:18:38 PST 2021


serge-sans-paille created this revision.
serge-sans-paille added reviewers: ddunbar, tstellar.
Herald added subscribers: delcypher, kristof.beyls.
serge-sans-paille requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

In addition to consistency, we'll hit a wall when 11.1.0 gets released, because we cannot represent it with lit versioning scheme.


https://reviews.llvm.org/D94157

Files:
  llvm/utils/lit/lit/__init__.py


Index: llvm/utils/lit/lit/__init__.py
===================================================================
--- llvm/utils/lit/lit/__init__.py
+++ llvm/utils/lit/lit/__init__.py
@@ -2,7 +2,7 @@
 
 __author__ = 'Daniel Dunbar'
 __email__ = 'daniel at minormatter.com'
-__versioninfo__ = (0, 12, 0)
+__versioninfo__ = (12, 0, 0)
 __version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
 
 __all__ = []


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94157.314808.patch
Type: text/x-patch
Size: 403 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210106/4219dbd3/attachment.bin>


More information about the llvm-commits mailing list