Skip to content
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
strategy:
matrix:
include:
- mw: 'REL1_39'
- mw: 'REL1_43'
php: '8.1'
experimental: false
- mw: 'REL1_41'
- mw: 'REL1_44'
php: '8.2'
experimental: false
- mw: 'REL1_42'
php: '8.3'
experimental: false
- mw: 'REL1_43'
- mw: 'REL1_45'
php: '8.3'
experimental: false
- mw: 'master'
php: '8.4'
experimental: true
- mw: 'master'
php: '8.5'
experimental: true

runs-on: ubuntu-latest

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
strategy:
matrix:
include:
- mw: 'REL1_41'
- mw: 'REL1_43'
php: '8.1'

runs-on: ubuntu-latest
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
strategy:
matrix:
include:
- mw: 'REL1_41'
- mw: 'REL1_43'
php: '8.1'

runs-on: ubuntu-latest
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
strategy:
matrix:
include:
- mw: 'REL1_41'
- mw: 'REL1_43'
php: '8.2'

runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ Lua module examples:

Platform requirements:

* [PHP] 8.1 or later (tested up to 8.3)
* [MediaWiki] 1.39 or later (tested up to 1.43)
* [PHP] 8.1 or later (tested up to 8.5)
* [MediaWiki] 1.43 or later (tested up to 1.45)
* [Scribunto] and lua

We also recommend installing the [CodeEditor extension]
Expand Down Expand Up @@ -126,6 +126,10 @@ these files with `make stan-baseline` and `make psalm-baseline`.

## Release Notes

### Version 2.0.0 - Under development

* Raised the minimum MediaWiki version from 1.39 to 1.43

### Version 1.0.0 - 2023-11-24

* Lua binding `SPARQL.runQuery` to execute SPARQL queries and return the results as a Lua table
Expand Down
4 changes: 2 additions & 2 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SPARQL",

"version": "1.0.0",
"version": "2.0.0-dev",

"author": [
"[https://Professional.Wiki/ Professional.Wiki]"
Expand All @@ -14,7 +14,7 @@
"descriptionmsg": "sparql-description",

"requires": {
"MediaWiki": ">= 1.39.0",
"MediaWiki": ">= 1.43.0",
"extensions": {
"Scribunto": "*"
}
Expand Down