JKQtPlotter/lib/jkqtplotterressources/math_fonts/xits/tools/changelog.py

12 lines
421 B
Python
Raw Normal View History

2015-08-02 21:16:05 +08:00
#!/usr/bin/env python
import commands
import datetime
date = datetime.date.today().strftime("%d %b %Y")
tag = commands.getoutput("git tag").split("\n")[-1]
log = commands.getoutput("git log --reverse --pretty=format:'- %%s' %s.. sources" % tag)
version = commands.getoutput("grep -o '^VERSION=.*.$' Makefile | cut --delimiter='=' --fields=2")
print "%s (Khaled Hosny) <XITS> Version %s" %(date, version)
print log
print