Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 1.3.0 #44

Merged
merged 4 commits into from
Apr 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
This file contains the RELEASE-NOTES of the Semantic Cite (a.k.a. SCI) extension.

### 1.3.0

Released on April 29, 2017.

* Minimum requirement for PHP changed to version 5.5 and later
* Minimum requirement for Semantic MediaWiki changed to version 2.5 and later
* #42 Fixed isse with `Special:FindCitableMetadata`
* Internal code changes
* Localization updates from https://translatewiki.net

### 1.2.0

Released on November 5, 2016.
Expand Down
4 changes: 2 additions & 2 deletions SemanticCite.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function load() {
*/
public static function initExtension() {

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

// Register the extension
$GLOBALS['wgExtensionCredits']['semantic'][ ] = array(
Expand All @@ -65,7 +65,7 @@ public static function initExtension() {
'url' => 'https://github.com/SemanticMediaWiki/SemanticCite/',
'descriptionmsg' => 'sci-desc',
'version' => SCI_VERSION,
'license-name' => 'GPL-2.0+',
'license-name' => 'GPL-2.0+'
);

// Register message files
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"semantic mediawiki",
"wiki",
"mediawiki",
"citation"
"citation"
],
"homepage": "https://semantic-mediawiki.org/wiki/Extension:SemanticCite",
"license": "GPL-2.0+",
Expand All @@ -21,14 +21,14 @@
"email": "semediawiki-user@lists.sourceforge.net",
"issues": "https://github.com/SemanticMediaWiki/SemanticCite/issues",
"irc": "irc://irc.freenode.net/semantic-mediawiki",
"forum": "https://semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://semantic-mediawiki.org/wiki/",
"forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://www.semantic-mediawiki.org/wiki/",
"source": "https://github.com/SemanticMediaWiki/SemanticCite"
},
"require": {
"php": ">=5.3.0",
"php": ">=5.5.0",
"composer/installers": "^1.0.12",
"mediawiki/semantic-media-wiki": "~2.3|~3.0",
"mediawiki/semantic-media-wiki": "~2.5",
"onoi/cache": "~1.2",
"onoi/http-request": "~1.3",
"onoi/remi":"~0.2",
Expand Down