Skip to content

Commit

Permalink
1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mwjames committed Jul 9, 2016
1 parent 1183fb5 commit 83ff990
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This [video](https://vimeo.com/115871518) 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.3 or later

## Installation

Expand All @@ -34,12 +34,12 @@ with an entry in MediaWiki's `composer.json`.
```json
{
"require": {
"mediawiki/semantic-interlanguage-links": "~1.2"
"mediawiki/semantic-interlanguage-links": "~1.3"
}
}
```
1. From your MediaWiki installation directory, execute
`composer require mediawiki/semantic-interlanguage-links:~1.1`
`composer require mediawiki/semantic-interlanguage-links:~1.3`
2. Navigate to _Special:Version_ on your wiki and verify that the package
have been successfully installed.

Expand Down
16 changes: 12 additions & 4 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains the RELEASE-NOTES of the Semantic Interlanguage Links (a.k.a. SIL) extension.

### 1.3.0 (undefined)
### 1.3.0

Released on July 9, 2016.

* Added `PageContentLanguageDbModifier` to handle possible deviations caused by an
enabled `wgPageLanguageUseDB` setting
Expand All @@ -11,22 +13,28 @@ This file contains the RELEASE-NOTES of the Semantic Interlanguage Links (a.k.a.
* #35 Added `InMemoryLruCache` to `PageContentLanguageOnTheFlyModifier`
* #33 Fixed language code in `Special:Search` to conform with IETF (ISO 639, BCP 47) norm

### 1.2.0 (2015-12-19)
### 1.2.0

Released on December 19, 2015.

* Added redirect handling for a `interlanguage link` reference
* #8 Removed multiple calls limitation, allow different interlanguage reference targets for
same language on a content page but disallow for a page to define different languages
* Switched `PageLanguageCacheStrategy` from 'blob' to 'single'
* Localization updates from https://translatewiki.net

### 1.1.0 (2015-06-02)
### 1.1.0

Released on June 2, 2015.

* Only match results in `Special:Search` for the selected language that contains an annotation
* Fixed behaviour in `ByLanguageCategoryPage` for when languages are switched
* #32 Fixed exception in `Special:Search` for no results
* Localization updates from https://translatewiki.net

### 1.0.0 (2015-02-14)
### 1.0.0

Released on Feburary 14, 2015.

* Initial release
* Added the `onoi/cache:~1.0` dependency
Expand Down
2 changes: 1 addition & 1 deletion SemanticInterlanguageLinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static function initExtension() {
// Load DefaultSettings
require_once __DIR__ . '/DefaultSettings.php';

define( 'SIL_VERSION', '1.3.0-alpha' );
define( 'SIL_VERSION', '1.3.0' );

This comment has been minimized.

Copy link
@kghbln

kghbln Jul 9, 2016

Member

Still need a tag

This comment has been minimized.

Copy link
@mwjames

mwjames Jul 9, 2016

Author Contributor

Feel free to push.


// Register extension info
$GLOBALS[ 'wgExtensionCredits' ][ 'semantic' ][ ] = array(
Expand Down

0 comments on commit 83ff990

Please sign in to comment.