PleaseStand has uploaded a new change for review. https://gerrit.wikimedia.org/r/187941
Change subject: composer.json: Correct license identifier ...................................................................... composer.json: Correct license identifier According to <https://spdx.org/licenses/>, "GPL-2.0" means "GNU General Public License v2.0 only", not "GNU General Public License v2.0 or later", which has the identifier "GPL-2.0+". Also made the same change in the documentation for $wgExtensionCredits. Change-Id: If25c15d03a71d7c50c9c85a04c2a589a3d978ad0 --- M composer.json M includes/DefaultSettings.php 2 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/41/187941/1 diff --git a/composer.json b/composer.json index 2b7a40a..a54719c 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "homepage": "https://www.mediawiki.org/wiki/Special:Version/Credits" } ], - "license": "GPL-2.0", + "license": "GPL-2.0+", "support": { "issues": "https://bugs.mediawiki.org/", "irc": "irc://irc.freenode.net/mediawiki", diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 0b37b97..7bd80c4 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -6321,7 +6321,7 @@ * 'version' => '1.9.0', * 'url' => 'http://example.org/example-extension/', * 'descriptionmsg' => 'exampleextension-desc', - * 'license-name' => 'GPL-2.0', + * 'license-name' => 'GPL-2.0+', * ); * @endcode * @@ -6355,7 +6355,7 @@ * localizable message (omit in favour of 'descriptionmsg'). * * - license-name: Short name of the license (used as label for the link), such - * as "GPL-2.0" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). + * as "GPL-2.0+" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). */ $wgExtensionCredits = array(); -- To view, visit https://gerrit.wikimedia.org/r/187941 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If25c15d03a71d7c50c9c85a04c2a589a3d978ad0 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: PleaseStand <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
