1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-08 22:08:02 +00:00

tools: update_changelog.sh and entire ChangeLog.

This commit is contained in:
Noel Maersk 2014-06-27 17:54:05 +03:00
parent 5cc43f2f16
commit ae941268bd
2 changed files with 6169 additions and 6 deletions

6166
ChangeLog

File diff suppressed because it is too large Load Diff

9
tools/update_changelog.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
FILE="$(dirname "$0")/../ChangeLog"
UPDATECMD="git log --oneline --decorate"
echo "Updated on `date`." > $FILE
echo "If working with git, use \`$UDATECMD\` for latest change log." >> $FILE
echo "------------------------------------------------------------------------" >> $FILE
$UPDATECMD >> $FILE