Skip to content

Commit

Permalink
Merge pull request #156 from Xymph/prepare-release-1.1.0
Browse files Browse the repository at this point in the history
Prepare for v1.1.0 release
  • Loading branch information
waldyrious authored Jul 30, 2023
2 parents f74835c + 5758d76 commit e1ceb2a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and [Keep a Changelog](http://keepachangelog.com/).

## Upcoming version

No changes yet.

## Version 1.1.0 - 2023-07-30

### Added

- Added internal mechanism to handle version-dependent parameters of API modules ([#151])
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It currently consists of three classes:
- **WikiFile** – Provides an interface to downloading/uploading files and getting their properties.

The [latest released version](https://github.com/hamstar/Wikimate/releases) of Wikimate
is v1.0.0, released on September 5, 2021.
is v1.1.0, released on July 30, 2023.
It requires PHP v5.3 or newer and MediaWiki v1.27 or newer.
See [CHANGELOG.md](CHANGELOG.md) for the detailed version history.

Expand Down Expand Up @@ -45,7 +45,7 @@ by adding the following to your existing `composer.json` file:
```json
{
"require": {
"hamstar/Wikimate": "^1.0"
"hamstar/Wikimate": "^1.1"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions Wikimate.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Wikimate is a wrapper for the MediaWiki API that aims to be very easy to use.
*
* @package Wikimate
* @version 1.0.0
* @version 1.1.0
* @copyright SPDX-License-Identifier: MIT
*/

Expand All @@ -26,7 +26,7 @@ class Wikimate
* @var string
* @link https://semver.org/
*/
const VERSION = '1.0.0';
const VERSION = '1.1.0';

/**
* Identifier for CSRF token
Expand Down

0 comments on commit e1ceb2a

Please sign in to comment.