Skip to content

Release version 1.2.0, declare compatibility with WordPress 6.5 #22

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased


## Version 1.2.0

### Changed
- Updated dependencies, including the Chartist library used for the charts
- Configure CI build via GitHub workflow, setup code style checks for CSS and JavaScript
Expand Down
6 changes: 4 additions & 2 deletions posts-and-users-stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
* 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.4
* Requires at least: 5.5
* Requires PHP: 5.6
* Version: 1.2.0
* Author: Patrick Robrecht
* Author URI: https://patrick-robrecht.de/
* License: GPLv3
Expand All @@ -16,7 +18,7 @@
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

define( 'POSTS_AND_USERS_STATS_VERSION', '1.1.4' );
define( 'POSTS_AND_USERS_STATS_VERSION', '1.2.0' );

/**
* Load text domain for translation.
Expand Down
10 changes: 7 additions & 3 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: 5.5
Tested up to: 6.4
Tested up to: 6.5
Requires PHP: 5.6
Stable tag: 1.1.4
Stable tag: 1.2.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -47,7 +47,11 @@ After the installation you can find the statistics as subpages of *Tools*.

== Changelog ==

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

= 1.2.0 =
* Enhancement: Updated dependencies, including the Chartist library used for the charts
* Enhancement: Configure CI build via GitHub workflow, setup code style checks for CSS and JavaScript

= 1.1.4 =
* Security fix: Precede cell values starting with = or another spreadsheet meta-character with a single quote to avoid CSV injection of formulas within a user's display name, category names, and tag names
Expand Down