Skip to content

Commit

Permalink
Tag version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
agapetry committed Apr 4, 2020
1 parent b37aea9 commit df3cc8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions revisionary.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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' );
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit df3cc8d

Please sign in to comment.