Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Apr 29, 2016
1 parent b7a3d52 commit a394201
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/awstats_changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ AWStats Changelog
- Add .svgz to image list
- Exclude groups.google from search engines
- Add %time5 tag to support log format with iso time with timezone.

- Add option DynamicDNSLookup to make DNS lookup during output instead
of during log analysis processing.
- Increase default value for MaxRowsInHTMLOutput


***** 7.4 *****

Expand Down
26 changes: 26 additions & 0 deletions make/makepack-awstats.pl
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,32 @@

if ($nboftargetok) {

# Update GIT tag if required
#---------------------------
if ($nbofpublishneedtag)
{
print "Go to directory $SOURCE\n";
$olddir=getcwd();
chdir("$SOURCE");

print 'Run git tag -a -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
$ret=`git tag -a -m "$MAJOR.$MINOR.$BUILD" "$MAJOR.$MINOR" 2>&1`;
if ($ret =~ /already exists/)
{
print "WARNING: Tag ".$MAJOR.'.'.$MINOR." already exists. Overwrite (y/N) ? ";
$QUESTIONOVERWRITETAG=<STDIN>;
chomp($QUESTIONOVERWRITETAG);
if ($QUESTIONOVERWRITETAG =~ /(o|y)/)
{
print 'Run git tag -a -f -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
$ret=`git tag -a -f -m "$MAJOR.$MINOR" "$MAJOR.$MINOR"`;
}
}
print 'Run git push --tags'."\n";
$ret=`git push --tags`;
chdir("$olddir");
}

# Update buildroot
#-----------------
if (! $copyalreadydone) {
Expand Down

0 comments on commit a394201

Please sign in to comment.