From 8896a61c08525675956661827dfb21f1622d5a8b Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 3 Sep 2014 15:12:19 +0200 Subject: [PATCH 1/2] Change release script to amend commit. Requires further work to properly handle the Git branching model as described by http://nvie.com/posts/a-successful-git-branching-model --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 7f0cda0..c852b76 100755 --- a/release.sh +++ b/release.sh @@ -19,7 +19,7 @@ tar cvzf $FILENAME gpl-*.txt README.md NEWS *.php --exclude '*~' --transform 's, if [[ $? -eq 0 ]]; then # Add the tarball to the repository, commit it, then tag the commit and push to origin. git add $FILENAME - git commit -m "Release version $1" + git commit -m --amend git tag -a $1 -m "Version $1." git push git push --tags From cf0cf61516c9a50e591750a2a48e1491ba8c196a Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 3 Sep 2014 15:13:22 +0200 Subject: [PATCH 2/2] Prepare release 3.0.1. --- LinkTitles.php | 2 +- NEWS | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/LinkTitles.php b/LinkTitles.php index c82e704..6eb9214 100755 --- a/LinkTitles.php +++ b/LinkTitles.php @@ -195,7 +195,7 @@ 'name' => 'LinkTitles', 'author' => '[https://www.mediawiki.org/wiki/User:Bovender Daniel Kraus]', 'url' => 'https://www.mediawiki.org/wiki/Extension:LinkTitles', - 'version' => '3.0.0', + 'version' => '3.0.1', 'descriptionmsg' => 'linktitles-desc' ); diff --git a/NEWS b/NEWS index dc65b83..76ce5e5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +LinkTitles 3.0.1: 2014-09-03 +* Fix several bugs in template handling. +* Ignore
 and similar sections that span multiple lines.
+
 LinkTitles 3.0.0: 2014-06-13
 * Dramatically improved performance (especially apparent during batch
   processing).