From d3d07efb3863badc40d20a32feb9781bee9c36e5 Mon Sep 17 00:00:00 2001 From: David Parker Date: Tue, 8 Oct 2024 11:57:16 -0400 Subject: [PATCH] Updating changelog and version numbers --- CHANGELOG.txt | 9 ++++++++- classes/gateways/class.pmprogateway_stripe.php | 2 +- package.json | 2 +- paid-memberships-pro.php | 4 ++-- readme.txt | 11 +++++++++-- 5 files changed, 21 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1c846463e..c1fd9e626 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,12 @@ == Changelog == -= 3.2 - 10-02-2024 = += 3.2.1 - 2024-10-08 = +* ENHANCEMENT: Improved the print styles for frontend pages. #3158 (@kimcoleman) +* BUG FIX: Fixed an issue where payments would not complete when Stripe 3DS was triggered. #3157 (@dparker1005) +* BUG FIX: Fixed an issue where "file" user fields would not allow uploads if the file restrictions setting was empty. #3156 (@andrewlimaza) +* BUG FIX: Fixed a deprecation warning when using Stripe Checkout. #3160 (@dparker1005) +* BUG FIX: Fixed an issue where the "street2" billing address field may not be saved for Stripe payments. (@dparker1005) + += 3.2 - 2024-10-02 = * FEATURE: Users will now receive a notification email when they have an upcoming subscription payment. #3109 (@dparker1005) * FEATURE: Added integration with Cloudflare Turnstile. #3123 (@andrewlimaza) * ENHANCEMENT: The business address for the website can now be set on the Advanced Settings page and will be shown on invoices. #3134 (@MaximilianoRicoTabo) diff --git a/classes/gateways/class.pmprogateway_stripe.php b/classes/gateways/class.pmprogateway_stripe.php index 5f4b9bab9..65a8d59aa 100644 --- a/classes/gateways/class.pmprogateway_stripe.php +++ b/classes/gateways/class.pmprogateway_stripe.php @@ -3903,7 +3903,7 @@ private static function get_order_description( $order ) { * This is a temporary fix for orders requiring SCA authentication. * Eventually, we want to always save orders in pending status with all of the checkout data stored in order meta, but we are not doing that yet. * - * @since TBD + * @since 3.2.1 */ public static function clear_pmpro_review( $pmpro_review ) { // If we don't have an order, bail. diff --git a/package.json b/package.json index b2f4b8684..c97f32981 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "3.2.0", + "version": "3.2.1", "description": "WordPress Membership Plugin", "directories": { "test": "tests" diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 653c2cace..d4cdec37a 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: 3.2 + * Version: 3.2.1 * Author: Paid Memberships Pro * Author URI: https://www.paidmembershipspro.com * Text Domain: paid-memberships-pro @@ -16,7 +16,7 @@ */ // version constant -define( 'PMPRO_VERSION', '3.2' ); +define( 'PMPRO_VERSION', '3.2.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 2bca49962..6443edf93 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: memberships, member, community, user profile, user registration Requires at least: 5.2 Tested up to: 6.6 Requires PHP: 5.6 -Stable tag: 3.2 +Stable tag: 3.2.1 License: GPLv2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -216,7 +216,14 @@ Not sure? You can find out by doing a bit a research. 10. Advanced settings for updating non-member messages, optionally show excerpts or filter content, use reCAPTCHA, and a Terms of Service checkbox. == Changelog == -= 3.2 - 10-02-2024 = += 3.2.1 - 2024-10-08 = +* ENHANCEMENT: Improved the print styles for frontend pages. #3158 (@kimcoleman) +* BUG FIX: Fixed an issue where payments would not complete when Stripe 3DS was triggered. #3157 (@dparker1005) +* BUG FIX: Fixed an issue where "file" user fields would not allow uploads if the file restrictions setting was empty. #3156 (@andrewlimaza) +* BUG FIX: Fixed a deprecation warning when using Stripe Checkout. #3160 (@dparker1005) +* BUG FIX: Fixed an issue where the "street2" billing address field may not be saved for Stripe payments. (@dparker1005) + += 3.2 - 2024-10-02 = * FEATURE: Users will now receive a notification email when they have an upcoming subscription payment. #3109 (@dparker1005) * FEATURE: Added integration with Cloudflare Turnstile. #3123 (@andrewlimaza) * ENHANCEMENT: The business address for the website can now be set on the Advanced Settings page and will be shown on invoices. #3134 (@MaximilianoRicoTabo)