diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d9f7ba7aa..224de7289 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,15 @@ == Changelog == += 3.4.1 - 2024-02-14 = +* ENHANCEMENT: Added a `!!refund_date!!` email template variable to the refund email template. #3301 (@kimcoleman) +* ENHANCEMENT: Added a `!!check_gateway_label!!` to the checkout check email template to show the set gateway label. #3301 (@kimcoleman) +* BUG FIX: Fixed an issue where sending test emails would always show an error message. #3301 (@kimcoleman, @derekashauer) +* BUG FIX: Fixed an issue where checkout emails may show the expiration date for the wrong level. #3300, #3303 (@dparker1005) +* BUG FIX: Fixed an issue where the admin's name may be mistakenly shown instead of the user's name in some admin email template variables. #3298 (@dparker1005) +* BUG FIX: Added missing email template variables for the membership recurring email. #3296 (@dparker1005) +* BUG FIX: Fixed an issue that may cause incorrect data to be sent in test emails. #3294 (@derekashauer) +* BUG FIX: Fixed localization and spacing for the default bodies of email templates. #3301 (@kimcoleman) +* REFACTOR: Updating some email template class names to match the email template slug. #3304 (@dparker1005) + = 3.4 - 2024-02-11 = * FEATURE: Now pulling localization files from https://translate.strangerstudios.com. #3211 (@andrewlimaza) * FEATURE: Added a new Membership Account Message level setting to show a level-specific message to members on the Membership Account page. #3271 (@andrewlimaza, @kimcoleman) diff --git a/package.json b/package.json index d4e7d2dec..7fa7c9f07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "3.4.0", + "version": "3.4.1", "description": "WordPress Membership Plugin", "directories": { "test": "tests" diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 3fdd88272..b793153d8 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 Trusted Membership Platform That Grows with You - * Version: 3.4 + * Version: 3.4.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.4' ); +define( 'PMPRO_VERSION', '3.4.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 278538860..7afa6f840 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.7.2 Requires PHP: 5.6 -Stable tag: 3.4 +Stable tag: 3.4.1 License: GPLv2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -204,6 +204,17 @@ Not sure? You can find out by doing a bit a research. 4. [Ask using our contact form](https://www.paidmembershipspro.com/contact/) == Changelog == += 3.4.1 - 2024-02-14 = +* ENHANCEMENT: Added a `!!refund_date!!` email template variable to the refund email template. #3301 (@kimcoleman) +* ENHANCEMENT: Added a `!!check_gateway_label!!` to the checkout check email template to show the set gateway label. #3301 (@kimcoleman) +* BUG FIX: Fixed an issue where sending test emails would always show an error message. #3301 (@kimcoleman, @derekashauer) +* BUG FIX: Fixed an issue where checkout emails may show the expiration date for the wrong level. #3300, #3303 (@dparker1005) +* BUG FIX: Fixed an issue where the admin's name may be mistakenly shown instead of the user's name in some admin email template variables. #3298 (@dparker1005) +* BUG FIX: Added missing email template variables for the membership recurring email. #3296 (@dparker1005) +* BUG FIX: Fixed an issue that may cause incorrect data to be sent in test emails. #3294 (@derekashauer) +* BUG FIX: Fixed localization and spacing for the default bodies of email templates. #3301 (@kimcoleman) +* REFACTOR: Updating some email template class names to match the email template slug. #3304 (@dparker1005) + = 3.4 - 2024-02-11 = * FEATURE: Now pulling localization files from https://translate.strangerstudios.com. #3211 (@andrewlimaza) * FEATURE: Added a new Membership Account Message level setting to show a level-specific message to members on the Membership Account page. #3271 (@andrewlimaza, @kimcoleman)