Skip to content

Commit

Permalink
Tag version 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
agapetry committed Dec 19, 2019
1 parent 9586a74 commit d02ab11
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: revision, access, permissions, cms, user, groups, members, admin, pages, p
Requires at least: 4.9.7
Tested up to: 5.3
Requires PHP: 5.6.20
Stable Tag: 2.1.4
Stable Tag: 2.1.5
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -62,6 +62,13 @@ For more details about both the free and pro version, see our <a href="https://p

== Changelog ==

= 2.1.5 - 11 Dec 2019 =
* Compat : PressPermit Pro - Pending revision previews could be viewed by any user (including anonymous) if "Prevent Revisors from viewing others' revisions" disabled (since 2.1.4)
* Fixed : Contributors had other users' uneditable, unreadable revisions listed in Revision Queue
* Fixed : Revision Preview - Under some configurations, users with read-only access to revisions had no top bar in revision preview display
* Fixed : Revision Preview - Under some role configurations, users saw an ineffective "Publish" button in preview top bar
* Fixed : PHP warning for undefined index 'preview'

= 2.1.4 - 10 Dec 2019 =
* Fixed : Revision previews were not displayed to Editors under some configurations
* Feature : Separate settings for "Prevent Revisors from editing others'" and "Prevent Revisors from viewing others'"
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.1.4
* Version: 2.1.5
* 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.1.4');
update_option('revisionary_last_version', '2.1.5');

// 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.1.4');
define('REVISIONARY_VERSION', '2.1.5');

if ( ! defined( 'RVY_VERSION' ) ) {
define( 'RVY_VERSION', REVISIONARY_VERSION ); // back compat
Expand Down

0 comments on commit d02ab11

Please sign in to comment.