diff --git a/readme.txt b/readme.txt index 3bb7dfab..1ff9a30d 100644 --- a/readme.txt +++ b/readme.txt @@ -100,6 +100,9 @@ Follow PublishPress on [Facebook](https://www.facebook.com/publishpress), [Twitt == Changelog == += 2.2.3 - 3 Apr 2020 = +* Fixed : Classic Editor - Category and Post Tag revisions were not applied + = 2.2.2 - 2 Apr 2020 = * Feature : Option to disable revision preview links for non-Administrators (to work around themes that force a 404 Not Found response) * Fixed : Inline styles were stripped or modifield on scheduled revision publication diff --git a/revisionary.php b/revisionary.php index 5ec9b2dc..73d4766e 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.2 + * Version: 2.2.3 * 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.2'); + update_option('revisionary_last_version', '2.2.3'); // 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.2'); + define('REVISIONARY_VERSION', '2.2.3'); if ( ! defined( 'RVY_VERSION' ) ) { define( 'RVY_VERSION', REVISIONARY_VERSION ); // back compat