From 3adf18663c87049395f95532d03588e0f2674099 Mon Sep 17 00:00:00 2001 From: Morne Alberts Date: Tue, 19 May 2026 10:43:12 +0200 Subject: [PATCH 1/2] Prepare for release 6.0.0 Finalizes the 6.0.0 stable release (Bootstrap 5.3.8): - extension.json: version 6.0.0-beta -> 6.0.0 - docs/release-notes.md: 6.0.0 entry finalized with release date - src/Hooks/SetupAfterCache.php: phpcs nit (missing space in array key) No functional or library changes; release prep only. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/release-notes.md | 2 +- extension.json | 2 +- src/Hooks/SetupAfterCache.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 330dda7..562c86b 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,7 +2,7 @@ ### MediaWiki Bootstrap 6.0.0 -Under development. +Released on May 19, 2026. * Upgraded Bootstrap from 4.6.2 to 5.3.8 (thanks @malberts) * Raised minimum MediaWiki version from 1.39 to 1.43 diff --git a/extension.json b/extension.json index 36b5a9f..975143d 100644 --- a/extension.json +++ b/extension.json @@ -6,7 +6,7 @@ "[https://professional.wiki/ Professional Wiki]", "James Hong Kong" ], - "version": "6.0.0-beta", + "version": "6.0.0", "url": "https://www.mediawiki.org/wiki/Extension:Bootstrap", "descriptionmsg": "bootstrap-desc", "license-name": "GPL-3.0-or-later", diff --git a/src/Hooks/SetupAfterCache.php b/src/Hooks/SetupAfterCache.php index 72b6fb5..f6b0030 100644 --- a/src/Hooks/SetupAfterCache.php +++ b/src/Hooks/SetupAfterCache.php @@ -109,7 +109,7 @@ protected function registerResourceLoaderModules( $localBasePath, $remoteBasePat 'localBasePath' => $localBasePath . '/js', 'remoteBasePath' => $remoteBasePath . '/js', 'es6' => true, - 'scripts'=> [], + 'scripts' => [], ], array_key_exists( 'ext.bootstrap.scripts', $GLOBALS[ 'wgResourceModules' ] ) ? $GLOBALS[ 'wgResourceModules' ][ 'ext.bootstrap.scripts' ] : [] From 81445f6ebc4b0ab59599ee3784a8c1e504550a8a Mon Sep 17 00:00:00 2001 From: Morne Alberts Date: Tue, 19 May 2026 11:00:31 +0200 Subject: [PATCH 2/2] Add Morne Alberts to authors Significant work on the Bootstrap 5 upgrade. Mirrors how Chameleon credits the same contributor in skin.json. Co-Authored-By: Claude Opus 4.7 (1M context) --- extension.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extension.json b/extension.json index 975143d..3e1ea86 100644 --- a/extension.json +++ b/extension.json @@ -4,7 +4,8 @@ "author": [ "[https://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]", "[https://professional.wiki/ Professional Wiki]", - "James Hong Kong" + "James Hong Kong", + "Morne Alberts" ], "version": "6.0.0", "url": "https://www.mediawiki.org/wiki/Extension:Bootstrap",