diff --git a/readme.txt b/readme.txt index a16f12bc..f2778db9 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: publishpress, kevinB, stevejburge, andergmartins Author: PublishPress Author URI: https://publishpress.com -Tags: revision, moderate, permissions, submit revisions, schedule revisions, +Tags: revision, submit changes, workflow, collaboration, permissions, moderate, posts, schedule revisions Requires at least: 4.9.7 Requires PHP: 5.6.20 Tested up to: 5.3 @@ -100,6 +100,16 @@ Follow PublishPress on [Facebook](https://www.facebook.com/publishpress), [Twitt == Changelog == += 2.2.1-rc = +* Fixed : Page Template was cleared on revision submission in some installations +* Fixed : Edit Revision - Move to Trash button did not work (and created new pending revision) +* Fixed : Duplicate email notifications for scheduled revision publication on some installations +* Fixed : Safeguard to prevent duplicate email notifications +* Feature : Plugin API - new filter 'revisionary_mail' allows adjustment to notification email address, title or message (or blockage of a particular email) +* Compat : New setting "Revision publication triggers API actions to mimic post update" causes save_post and transition_post_status actions to fire on revision publication +* Compat : Yoast SEO - Revision submission stripped accented characters and emojis out of FAQ block +* Compat : On revision publication, trigger 'transition_post_status' action, for plugins that use it + = 2.2 - 12 Feb 2020 = * Feature : Email Notification - option to notify Editors and Administrators when a Pending Revision is approved * Fixed : Block Editor - Custom Taxonomies, if unchanged, were not saved to revision. Publication of revision cleared custom taxonomies for published post. diff --git a/revisionary.php b/revisionary.php index 30f956b8..4a0c9147 100644 --- a/revisionary.php +++ b/revisionary.php @@ -5,7 +5,7 @@ * Description: Maintain published content with teamwork and precision using the Revisions model to submit, approve and schedule changes. * Author: PublishPress * Author URI: https://publishpress.com - * Version: 2.2 + * Version: 2.2.1-rc * Text Domain: revisionary * Domain Path: /languages/ * Min WP Version: 4.9.7 @@ -96,7 +96,7 @@ function($links, $file) register_activation_hook(__FILE__, function() { // mirror to REVISIONARY_VERSION - update_option('revisionary_last_version', '2.2'); + update_option('revisionary_last_version', '2.2.1-rc'); // force this timestamp to be regenerated, in case something went wrong before delete_option( 'rvy_next_rev_publish_gmt' ); @@ -160,7 +160,7 @@ function() return; } - define('REVISIONARY_VERSION', '2.2'); + define('REVISIONARY_VERSION', '2.2.1-rc'); if ( ! defined( 'RVY_VERSION' ) ) { define( 'RVY_VERSION', REVISIONARY_VERSION ); // back compat