Skip to content

Commit

Permalink
Make 2.2.0 release (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
kghbln authored Jan 19, 2022
1 parent bfdb66c commit 1c616a4
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ matrix:
fast_finish: true
include:
- env: DB=mysql; MW=REL1_31; TYPE=coverage; PHPUNIT=6.5.*
php: 7.0
- env: DB=mysql; MW=REL1_32; PHPUNIT=6.5.*
php: 7.1
- env: DB=sqlite; MW=REL1_33; PHPUNIT=6.5.*
php: 7.2
- env: DB=mysql; MW=REL1_33; PHPUNIT=6.5.*
php: 7.2
- env: DB=mysql; MW=master; PHPUNIT=6.5.*
php: 7.3
- env: DB=mysql; MW=REL1_36; PHPUNIT=6.5.*
php: 7.3
- env: DB=sqlite; MW=REL1_35; PHPUNIT=6.5.*
php: 7.3
- env: DB=mysql; MW=REL1_35; PHPUNIT=6.5.*
php: 7.4
- env: DB=mysql; MW=master; PHPUNIT=6.5.*
php: 7.4

install:
- bash ./tests/travis/install-mediawiki.sh
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Semantic Scribunto (a.k.a. SSC) is a [Semantic Mediawiki][smw] extension to prov

## Requirements

- PHP 7.0 or later
- PHP 7.3 or later
- MediaWiki 1.31 or later
- [Semantic MediaWiki][smw] 3.0 or later

Expand All @@ -31,15 +31,15 @@ create one and add the following content to it:
```json
{
"require": {
"mediawiki/semantic-scribunto": "~2.1"
"mediawiki/semantic-scribunto": "~2.2"
}
}
```

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-scribunto": "~2.1"
"mediawiki/semantic-scribunto": "~2.2"

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

Expand Down
11 changes: 11 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
This file contains the RELEASE-NOTES of the **Semantic Scribunto** (a.k.a. SSC) extension.

## 2.2.0

Released on January 19, 2022.

* Minimum requirement for
* PHP changed to version 7.3 and later
* #75 Fixes string conversions when passing iterators into SMW objects
* #81 Fixes "mw.smw.ask" for "format=count" queries
* #82 Fixes the display of "mw.smw.icon" when its type is set to error
* Localization updates from https://translatewiki.net

## 2.1.0

Released on August 18, 2019.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"source": "https://github.com/SemanticMediaWiki/SemanticScribunto"
},
"require": {
"php": ">=7.0",
"php": ">=7.3",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/semantic-media-wiki": "~3.0|~4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SemanticScribunto",
"version": "2.2.0-alpha",
"version": "2.2.0",
"author": [
"James Hong Kong",
"[https://www.semantic-mediawiki.org/wiki/User:Oetterer Tobias Oetterer]"
Expand Down

0 comments on commit 1c616a4

Please sign in to comment.