Skip to content

Commit

Permalink
Tag version 2.2.1-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
agapetry committed Feb 28, 2020
1 parent 2edb077 commit 1d7d2d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
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
* Version: 2.2.1-rc
* 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');
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' );
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 1d7d2d3

Please sign in to comment.