llvm-project/llvm/utils/lit/lit/__init__.py
Tom Stellard 3bd3e06f3f
Bump version to 21.0.0git (#124870)
Also clear the release notes.
2025-01-28 19:48:43 -08:00

9 lines
199 B
Python

"""'lit' Testing Tool"""
__author__ = "Daniel Dunbar"
__email__ = "daniel@minormatter.com"
__versioninfo__ = (21, 0, 0)
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
__all__ = []