diff --git a/README.md b/README.md index 4123ac0..bb3a32f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This [video](https://vimeo.com/129347298) demonstrates the functionality of the - PHP 5.3.2 or later - MediaWiki 1.23 or later -- [Semantic MediaWiki][smw] 2.1 or later +- [Semantic MediaWiki][smw] 2.4 or later ## Installation @@ -30,12 +30,12 @@ The recommended way to install Semantic Breadcrumb Links is by using [Composer][ ```json { "require": { - "mediawiki/semantic-breadcrumb-links": "~1.2" + "mediawiki/semantic-breadcrumb-links": "~1.3" } } ``` 1. From your MediaWiki installation directory, execute - `composer require mediawiki/semantic-breadcrumb-links:~1.2` + `composer require mediawiki/semantic-breadcrumb-links:~1.3` 2. Navigate to _Special:Version_ on your wiki and verify that the package have been successfully installed. diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 1835a2f..761b78a 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,7 +1,10 @@ This file contains the RELEASE-NOTES of the Semantic Breadcrumb Links (a.k.a. SBL) extension. -### 1.3.0 (2016-06-??) +### 1.3.0 +Released on July 9, 2016. + +* Requires SMW 2.4+ * Added `onoi/shared-resources` dependency * Support for `Display title of` provided by SMW 2.4 * Added `$GLOBALS['egSBLEnabledSubpageParentAnnotation']` to allow for subpage @@ -10,20 +13,26 @@ This file contains the RELEASE-NOTES of the Semantic Breadcrumb Links (a.k.a. SB when building the breadcrumb title * Apply italic styles for "hasChildren" early to avoid JS async display clutter -### 1.2.0 (2015-12-19) +### 1.2.0 + +Released on December 19, 2015. * #9 Added a tooltip to display all closest descendants * #8 Fixed failure for cases when a subpage contains an extra slash * #7 Fixed breadcrumb trail for when a subject is a redirect * Localization updates from https://translatewiki.net -### 1.1.0 (2015-06-02) +### 1.1.0 + +Released on June 2, 2015. * Fixed unstyled content flashing observed in MW 1.25 * Added `$GLOBALS['egSBLBreadcrumbDividerStyleClass']` to assign styling options such as `sbl-breadcrumb-pipe` or `sbl-breadcrumb-arrow` * Localization updates from https://translatewiki.net -### 1.0.0 (2015-02-14) +### 1.0.0 + +Released on Februray 14, 2015. * Initial release * `ByPropertyHierarchicalLinksFinder` to match a property hierarchy defined by `egSBLPropertySearchPatternByNamespace` diff --git a/SemanticBreadcrumbLinks.php b/SemanticBreadcrumbLinks.php index d8ebfc2..111cea6 100644 --- a/SemanticBreadcrumbLinks.php +++ b/SemanticBreadcrumbLinks.php @@ -41,7 +41,7 @@ public static function initExtension() { // Load DefaultSettings require_once __DIR__ . '/DefaultSettings.php'; - define( 'SBL_VERSION', '1.3.0-alpha' ); + define( 'SBL_VERSION', '1.3.0' ); define( 'SBL_PROP_PARENTPAGE', 'Has parent page' ); diff --git a/composer.json b/composer.json index e8a61f4..a05f0f4 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "require": { "php": ">=5.3.0", "composer/installers": "1.*,>=1.0.12", - "mediawiki/semantic-media-wiki": "~2.1", + "mediawiki/semantic-media-wiki": "~2.4", "onoi/shared-resources":"~0.2" }, "require-dev": {