diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 61d14a537..f48eb76c4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,7 @@ == Changelog == += 2.5.9.1 - 2021-05-12 = +* BUG FIX/ENHANCEMENT: Updated pmpro_changeMembershipLevel() to return null if the user's level is not changed. For the past 2 vesions, we've been returning true in these cases, which caused PMPro to send emails to the admin when the edit use page was saved, even if there was no level change. This change has been backported to versions 2.5.8 and 2.5.9. + = 2.5.9 - 2021-05-05 = * ENHANCEMENT: Adjusting style for prices and price parts shown on the frontend. * ENHANCEMENT: Adjusting HTML for links in the Orders table in the dashboard. diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 7ccd84832..571e0bbda 100644 --- a/paid-memberships-pro.php +++ b/paid-memberships-pro.php @@ -3,7 +3,7 @@ * Plugin Name: Paid Memberships Pro * Plugin URI: https://www.paidmembershipspro.com * Description: The most complete member management and membership subscriptions plugin for WordPress. - * Version: 2.5.9 + * Version: 2.5.9.1 * Author: Stranger Studios * Author URI: https://www.strangerstudios.com * Text Domain: paid-memberships-pro @@ -16,7 +16,7 @@ */ // version constant -define( 'PMPRO_VERSION', '2.5.9' ); +define( 'PMPRO_VERSION', '2.5.9.1' ); define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() ); define( 'PMPRO_MIN_PHP_VERSION', '5.6' ); diff --git a/readme.txt b/readme.txt index 9df30944a..72ae33306 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershi Tags: memberships, members, subscriptions, ecommerce, user registration, member, membership, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory Requires at least: 4.7 Tested up to: 5.7 -Stable tag: 2.5.9 +Stable tag: 2.5.9.1 Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site. @@ -153,6 +153,9 @@ Not sure? You can find out by doing a bit a research. 9. Membership Account page, display all sections or show specific sections using shortcode attributes. == Changelog == += 2.5.9.1 - 2021-05-12 = +* BUG FIX/ENHANCEMENT: Updated pmpro_changeMembershipLevel() to return null if the user's level is not changed. For the past 2 vesions, we've been returning true in these cases, which caused PMPro to send emails to the admin when the edit use page was saved, even if there was no level change. This change has been backported to versions 2.5.8 and 2.5.9. + = 2.5.9 - 2021-05-05 = * ENHANCEMENT: Adjusting style for prices and price parts shown on the frontend. * ENHANCEMENT: Adjusting HTML for links in the Orders table in the dashboard.