Skip to content

Commit

Permalink
Release version 2.5.2
Browse files Browse the repository at this point in the history
This is an accounting consistency release to correspond to wordpress.org.  The version 2.5.1 release to the WP svn included incorrect vendor library code (erroneously copied from Revisions Pro).
  • Loading branch information
agapetry committed Mar 30, 2021
1 parent 9e8fcbe commit 37232c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tags: revision, submit changes, workflow, collaboration, permissions, moderate,
Requires at least: 4.9.7
Requires PHP: 5.6.20
Tested up to: 5.7
Stable tag: 2.5.1
Stable tag: 2.5.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -104,6 +104,9 @@ Follow PublishPress on [Facebook](https://www.facebook.com/publishpress), [Twitt

== Changelog ==

= 2.5.2 - 30 Mar 2021 =
* Fixed : Fatal error due to incorrect vendor library load request

= 2.5.1 - 30 Mar 2021 =
* Fixed : Revisors could not preview other users' pending revisions, even if they are listed in Revision Queue (Permissions integration requires 3.5.1)
* Fixed : Post Title changes were not applied at 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.5.1
* Version: 2.5.2
* Text Domain: revisionary
* Domain Path: /languages/
* Min WP Version: 4.9.7
Expand Down Expand Up @@ -96,7 +96,7 @@ function($links, $file)
// register these functions before any early exits so normal activation/deactivation can still run with RS_DEBUG
register_activation_hook(__FILE__, function()
{
$current_version = '2.5.1';
$current_version = '2.5.2';

$last_ver = get_option('revisionary_last_version');

Expand Down Expand Up @@ -172,7 +172,7 @@ function()
return;
}

define('REVISIONARY_VERSION', '2.5.1');
define('REVISIONARY_VERSION', '2.5.2');

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

0 comments on commit 37232c8

Please sign in to comment.