Skip to content

Commit

Permalink
Release version 2.0.0 (#42)
Browse files Browse the repository at this point in the history
* Update README.md
* Update RELEASE-NOTES.md
* Update composer.json
* Update extension.json
  • Loading branch information
kghbln authored Jan 28, 2019
1 parent 88ccec7 commit e65a81b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Semantic Compound Queries (a.k.a. SCQ) is a [Semantic Mediawiki][smw] extension

- PHP 5.6 or later
- MediaWiki 1.27 or later
- [Semantic MediaWiki][smw] 2.5 or later
- [Semantic MediaWiki][smw] 3.0 or later

## Installation

Expand All @@ -37,15 +37,15 @@ If you do not have a "composer.local.json" file yet, create one and add the foll
```
{
"require": {
"mediawiki/semantic-compound-queries": "~1.2"
"mediawiki/semantic-compound-queries": "~2.0"
}
}
```

If you already have a "composer.local.json" file add the following line to the end of the "require"
section in your file:

"mediawiki/semantic-compound-queries": "~1.2"
"mediawiki/semantic-compound-queries": "~2.0"

Remember to add a comma to the end of the preceding line in this section.

Expand All @@ -58,6 +58,12 @@ Run the following command in your shell:
Note if you have Git installed on your system add the `--prefer-source` flag to the above command. Also
note that it may be necessary to run this command twice. If unsure do it twice right away.

### Step 4

Add the following line to the end of your "LocalSettings.php" file:

wfLoadExtension( 'SemanticCompoundQueries' );

### Verify installation success

As final step, you can verify SCI got installed by looking at the "Special:Version" page on your wiki and
Expand Down
11 changes: 10 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
These are the release notes for the Semantic Compound Queries extension.
These are the RELEASE NOTES for the **Semantic Compound Queries** (a.k.a. SCQ) extension.

## Semantic Compound Queries 2.0.0

Released on January 29, 2019.

* Minimum requirement for Semantic MediaWiki changed to version 3.0 and later
* #39 Adds support for extension registration via "extension.json"
→ Now you have to use `wfLoadExtension( 'SemanticCompoundQueries' );` in the "LocalSettings.php" file to invoke the extension
* Localization updates from https://translatewiki.net

## Semantic Compound Queries 1.2.0

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"require": {
"php": ">=5.6",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/semantic-media-wiki": "~2.5|~3.0"
"mediawiki/semantic-media-wiki": "~3.0"
},
"require-dev": {
"mediawiki/semantic-media-wiki": "@dev",
Expand Down
4 changes: 2 additions & 2 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SemanticCompoundQueries",
"version": "2.0.0-alpha",
"version": "2.0.0",
"author": [
"James Hong Kong",
"Yaron Koren",
Expand All @@ -23,6 +23,6 @@
"ExtensionFunctions": [
"SemanticCompoundQueries::onExtensionFunction"
],
"load_composer_autoloader":true,
"load_composer_autoloader": true,
"manifest_version": 1
}

0 comments on commit e65a81b

Please sign in to comment.