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

Made compatible with WordPress 5.8 #5

Open
wants to merge 1 commit into
base: master
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
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: 99robots, charliepatel, DraftPress
Donate link:
Tags: post status, status, status notification, post notification, email notification, post status notification, notifier, contributors, submit for review, pending status, pending posts, published posts, contributions, post message, article submissions, admin notifications, editor notifications, contributor notification, post email, editorial workflow, edit flow
Requires at least: 4.5
Tested up to: 5.7.2
Stable tag: 3.1.7
Tested up to: 5.8
Stable tag: 3.1.8
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -62,6 +62,9 @@ Similar to all other plugins, follow these instructions:

== Changelog ==

= 3.1.8 = 2021-07-12
* Made compatible with WordPress 5.8

= 3.1.7 = 2021-05-14
* Made compatible with WordPress 5.7.2

Expand Down
16 changes: 8 additions & 8 deletions wpsite-post-status-notification.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Plugin Name: Post Status Notifications
* Plugin URI: http://www.draftpress.com/plugin/post-status-notifications
* Description: Send post status notifications by email to Administrators and Contributors when posts are submitted for review or published. Great for multi-author sites to improve editorial workflow.
* Version: 3.1.7
* Author: 99 Robots
* Author URI: https://www.draftpress.com
* License: GPL2
* Plugin Name: Post Status Notifications
* Plugin URI: http://www.draftpress.com/products/post-status-notifications
* Description: Send post status notifications by email to Administrators and Contributors when posts are submitted for review or published. Great for multi-author sites to improve editorial workflow.
* Version: 3.1.8
* Author: DraftPress
* Author URI: https://www.draftpress.com
* License: GPL2
*/

// If this file is called directly, abort.
Expand All @@ -26,7 +26,7 @@ class WPSite_Post_Status_Notifications
* WPSite_Post_Status_Notifications version.
* @var string
*/
public $version = '3.1.7';
public $version = '3.1.8';

/**
* The single instance of the class.
Expand Down