jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/325906 )

Change subject: Release version 8.2.0 to regain compat with latest releases of 
MediaWiki
......................................................................


Release version 8.2.0 to regain compat with latest releases of MediaWiki

* Bump version number
* Updated CHANGELOG
* Updated README

Change-Id: I322da513a94ad1aa13b7059ec31517287b0293f5
---
M CHANGELOG
M MassEditRegex.php
M README
3 files changed, 66 insertions(+), 15 deletions(-)

Approvals:
  Florianschmidtwelzow: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/CHANGELOG b/CHANGELOG
index 4cf1a4a..39f7b3e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -6,11 +6,23 @@
 This file documents the development changes.
 
 
+### Version 8.2.0
+
+Released on 2016-12-08
+
+Compatible with MediaWiki 1.17 and later
+
+- Replace deprecated skin's commentBlock function with Linker::commentBlock
+- Provide translations done by the community of translatewiki.net
+
+
 ### Versiom 8.1.1
 
 Released on 2016-10-17
 
-- Fix for undefined $htmlDiff
+Compatible with MediaWiki 1.17 to MediaWiki 1.27
+
+- Fix undefined $htmlDiff
 - Provide translations done by the community of translatewiki.net
 
 
@@ -65,6 +77,8 @@
 
 Released on 2015-02-08
 
+Compatible with MediaWiki 1.17 and later as well as PHP 5.3 and later
+
 - Add support for execution to be done on client side
 - Internal code cleanup
 - Replace depreciated wfMsg* calls / take 1
diff --git a/MassEditRegex.php b/MassEditRegex.php
index 4bb8534..7d21d93 100644
--- a/MassEditRegex.php
+++ b/MassEditRegex.php
@@ -28,7 +28,7 @@
        'path' => __FILE__,
        'name' => 'MassEditRegex',
        'namemsg' => 'masseditregex-extensionname',
-       'version' => '8.1.1',
+       'version' => '8.2.0',
        'author' => array(
                'Adam Nielsen',
                '...'
diff --git a/README b/README
index 9faf9a0..a19a9d5 100644
--- a/README
+++ b/README
@@ -1,19 +1,56 @@
-== MassEditRegex ==
-Copyright © 2009,2013 Adam Nielsen <malvine...@shikadi.net>
-GNU General Public License 2.0 or later
-http://www.gnu.org/copyleft/gpl.html
+## MassEditRegex
 
-Edit a list of pages in a single operation by applying a regular expression 
-to each page's content.
+MassEditRegex is an extension to MediaWiki that allowing to use regular 
expressions for editing many pages
+in one operation.
 
-See http://www.mediawiki.org/wiki/Extension:MassEditRegex for full 
instructions.
 
-Briefly:
+### Copyright
+Copyright © 2009, 2013 Adam Nielsen <malvine...@shikadi.net> according to the 
GNU General Public License 2.0
+or later (GPL-2.0+). See also the "COPYING" file provided with the code.
 
-  1. Add to LocalSettings.php:
 
-    require_once ( "$IP/extensions/MassEditRegex/MassEditRegex.php" );
-    // Allow administrators to use Special:MassEditRegex
-    $wgGroupPermissions['sysop']['masseditregex'] = true;
+### Compatibility
 
-  2. Go to [[Special:MassEditRegex]]
\ No newline at end of file
+* PHP 5.3 and later
+* MediaWiki 1.17 and later
+
+See also the "CHANGELOG" file provided with the code.
+
+
+### Installation
+
+(1) Obtain the code from 
[GitHub](https://github.com/wikimedia/mediawiki-extensions-MassEditRegex/releases)
+
+(2) Extract the files in a directory called `MassEditRegex` in your 
`extensions/` folder.
+
+(3) Add the following code at the bottom of your "LocalSettings.php" file:
+```
+require_once "$IP/extensions/MassEditRegex/MassEditRegex.php";
+```
+(4) Define which user groups may use this extension by configuring it as 
outlined in the "Configuration" section
+of this file.
+
+(5) Go to "Special:Version" on your wiki to verify that the extension is 
successfully installed.
+
+(6) Done.
+
+
+### Configuration
+
+This extension comes with an extra user right called "masseditregex" to allow 
fine grained control of which user groups
+may use this extension. By default it is assigned to no user group. In case 
you would like to assign it to a user group
+e.g. "masseditregexeditor", add the following code to you "LocalSettings.php" 
file right after the lines added in step (3)
+of the installation process:
+
+```
+$wgGroupPermissions['masseditregexeditor']['masseditregex'] = true;
+```
+Alternatively you may grant the permission to an existing user group, e.g. 
"sysop" by adding the following line:
+
+```
+$wgGroupPermissions['sysop']['masseditregex'] = true;
+```
+
+### Usage
+See the extensions homepage at 
https://www.mediawiki.org/wiki/Extension:MassEditRegex for full instructions on 
how to
+use this extension.

-- 
To view, visit https://gerrit.wikimedia.org/r/325906
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I322da513a94ad1aa13b7059ec31517287b0293f5
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/MassEditRegex
Gerrit-Branch: master
Gerrit-Owner: Kghbln <kars...@hoffmeyer.info>
Gerrit-Reviewer: Florianschmidtwelzow <florian.schmidt.stargatewis...@gmail.com>
Gerrit-Reviewer: Kghbln <kars...@hoffmeyer.info>
Gerrit-Reviewer: Paladox <thomasmulhall...@yahoo.com>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to