Merge branch 'release-3.0.1' into develop

This commit is contained in:
Daniel Kraus
2014-09-03 15:15:22 +02:00
3 changed files with 6 additions and 2 deletions

View File

@ -195,7 +195,7 @@
'name' => 'LinkTitles', 'name' => 'LinkTitles',
'author' => '[https://www.mediawiki.org/wiki/User:Bovender Daniel Kraus]', 'author' => '[https://www.mediawiki.org/wiki/User:Bovender Daniel Kraus]',
'url' => 'https://www.mediawiki.org/wiki/Extension:LinkTitles', 'url' => 'https://www.mediawiki.org/wiki/Extension:LinkTitles',
'version' => '3.0.0', 'version' => '3.0.1',
'descriptionmsg' => 'linktitles-desc' 'descriptionmsg' => 'linktitles-desc'
); );

4
NEWS
View File

@ -1,3 +1,7 @@
LinkTitles 3.0.1: 2014-09-03
* Fix several bugs in template handling.
* Ignore <pre> and similar sections that span multiple lines.
LinkTitles 3.0.0: 2014-06-13 LinkTitles 3.0.0: 2014-06-13
* Dramatically improved performance (especially apparent during batch * Dramatically improved performance (especially apparent during batch
processing). processing).

View File

@ -19,7 +19,7 @@ tar cvzf $FILENAME gpl-*.txt README.md NEWS *.php --exclude '*~' --transform 's,
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
# Add the tarball to the repository, commit it, then tag the commit and push to origin. # Add the tarball to the repository, commit it, then tag the commit and push to origin.
git add $FILENAME git add $FILENAME
git commit -m "Release version $1" git commit -m --amend
git tag -a $1 -m "Version $1." git tag -a $1 -m "Version $1."
git push git push
git push --tags git push --tags