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 v0.14.0 release #120

Merged
merged 1 commit into from
Aug 24, 2021
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 @@ -4,6 +4,10 @@ Since v0.10.0 this project adheres to [Semantic Versioning](http://semver.org/)

### Upcoming version

No changes yet.

### Version 0.14.0 - 2021-08-24

#### Added

* Support for the maxlag parameter (with retries) in API requests ([#112])
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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 v0.13.0, released on Jul 5, 2021. It requires MediaWiki v1.27 or newer.
is v0.14.0, released on Aug 24, 2021. It requires MediaWiki v1.27 or newer.
See [CHANGELOG.md](CHANGELOG.md) for the detailed version history.

## Installation
Expand All @@ -26,7 +26,7 @@ Then, download Wikimate, and initialise it by running `composer install` (or
To use Wikimate within another project, you can add it as a composer dependency
by adding the following to your `composer.json` file:

"hamstar/Wikimate": "0.13.0"
"hamstar/Wikimate": "0.14.0"

## Usage

Expand Down
4 changes: 2 additions & 2 deletions Wikimate.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Wikimate is a wrapper for the MediaWiki API that aims to be very easy to use.
*
* @package Wikimate
* @version 0.13.0
* @version 0.14.0
* @copyright SPDX-License-Identifier: MIT
*/

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

/**
* Identifier for CSRF token
Expand Down