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
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: php

php:
- 5.6
- 7.1
- 7.2
- 7.3
- 7.4
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## Unreleased
## Version 1.1.3

### Changed
* Enhancement: Compliance with latest WP coding guidelines and other code style improvements
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"php": ">=5.6",
"npm-asset/chartist": "^0.11.4",
"npm-asset/chartist-plugin-axistitle": "^0.0.7",
"npm-asset/moment": "^2.24.0"
"npm-asset/moment": "^2.27.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"matthiasmullie/minify": "^1.3.63",
"phpcompatibility/php-compatibility": "^9.3.5",
"slowprog/composer-copy-file": "^0.3.1",
"squizlabs/php_codesniffer": "^3.5.4",
"wp-coding-standards/wpcs": "^2.2.1"
"slowprog/composer-copy-file": "^0.3.3",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.3.0"
},
"repositories": [
{
Expand Down
53 changes: 27 additions & 26 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions posts-and-users-stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Posts and Users Stats
* Plugin URI: https://patrick-robrecht.de/wordpress/
* Description: Statistics about the number of posts and users, provided as diagrams, tables and csv export.
* Version: 1.1.2
* Version: 1.1.3
* Author: Patrick Robrecht
* Author URI: https://patrick-robrecht.de/
* License: GPLv3
Expand All @@ -16,7 +16,7 @@
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

define( 'POSTS_AND_USERS_STATS_VERSION', '1.1.2' );
define( 'POSTS_AND_USERS_STATS_VERSION', '1.1.3' );

/**
* Load text domain for translation.
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: patrickrobrecht
Tags: dashboard, statistics
Requires at least: 4.4
Tested up to: 5.4
Tested up to: 5.5
Requires PHP: 5.6
Stable tag: 1.1.2
Stable tag: 1.1.3
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -49,6 +49,9 @@ After the installation you can find the statistics as subpages of *Tools*.

If interested, please check up the [changelog at GitHub](https://github.com/patrickrobrecht/posts-and-users-stats#changelog).

= 1.1.3 =
* Enhancement: Compliance with latest WP coding guidelines and other code style improvements

= 1.1.2 =
* Enhancement: Compliance with latest WP coding guidelines

Expand Down