[LNT] r306597 - We just never update the version number of LNT - that is silly
Chris Matthews via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 28 13:45:04 PDT 2017
Author: cmatthews
Date: Wed Jun 28 13:45:04 2017
New Revision: 306597
URL: http://llvm.org/viewvc/llvm-project?rev=306597&view=rev
Log:
We just never update the version number of LNT - that is silly
Lets update it on major features landing. To get things moving I will
bump it once now.
Modified:
lnt/trunk/CHANGELOG.txt
lnt/trunk/lnt/__init__.py
Modified: lnt/trunk/CHANGELOG.txt
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/CHANGELOG.txt?rev=306597&r1=306596&r2=306597&view=diff
==============================================================================
--- lnt/trunk/CHANGELOG.txt (original)
+++ lnt/trunk/CHANGELOG.txt Wed Jun 28 13:45:04 2017
@@ -1,3 +1,9 @@
+0.4.2
+=====
+
+We did a really bad job of incrementing this number for years. Lots of changes!
+
+
0.4.1
=====
Modified: lnt/trunk/lnt/__init__.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/__init__.py?rev=306597&r1=306596&r2=306597&view=diff
==============================================================================
--- lnt/trunk/lnt/__init__.py (original)
+++ lnt/trunk/lnt/__init__.py Wed Jun 28 13:45:04 2017
@@ -1,6 +1,6 @@
__author__ = 'Daniel Dunbar'
__email__ = 'daniel at zuster.org'
-__versioninfo__ = (0, 4, 1)
+__versioninfo__ = (0, 4, 2)
__version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
__all__ = []
More information about the llvm-commits
mailing list