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

Prepare for v1.1.0 release #156

Merged
merged 1 commit into from
Jul 30, 2023
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
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