diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 75126570a..1a7217691 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,9 @@ == Changelog == += 3.3.1 - 2024-10-24 = +* ENHANCEMENT: Added a Subscriptions List Table to allow admins to view, manage, and link subscriptions from the WordPress admin. #2828 (@dparker1005, @kimcoleman) +* ENHANCEMENT: Discount codes can now be set to only allow one use per user. #3175 (@dparker1005) +* BUG FIX: Fixed an issue where billing address information would be cleared when a checkout attempt failed causing Stripe 3DS checks to break. #3172 (@dparker1005, @mircobabini) + = 3.3 - 2024-10-16 = * FEATURE: Now updating the plugin from paidmembershipspro.com. #3167 (@dparker1005) * ENHANCEMENT: Updated translation files bundled with the plugin. #3168 (@MaximilianoRicoTabo) diff --git a/package.json b/package.json index faf428c7f..4640e8684 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "3.3.0", + "version": "3.3.1", "description": "WordPress Membership Plugin", "directories": { "test": "tests" diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index e829fcb51..556652d7d 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.3 + * Version: 3.3.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.3' ); +define( 'PMPRO_VERSION', '3.3.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 075ff370e..43bd05287 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.2 Requires PHP: 5.6 -Stable tag: 3.3 +Stable tag: 3.3.1 License: GPLv2 License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -204,6 +204,11 @@ 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.3.1 - 2024-10-24 = +* ENHANCEMENT: Added a Subscriptions List Table to allow admins to view, manage, and link subscriptions from the WordPress admin. #2828 (@dparker1005, @kimcoleman) +* ENHANCEMENT: Discount codes can now be set to only allow one use per user. #3175 (@dparker1005) +* BUG FIX: Fixed an issue where billing address information would be cleared when a checkout attempt failed causing Stripe 3DS checks to break. #3172 (@dparker1005, @mircobabini) + = 3.3 - 2024-10-16 = * FEATURE: Now updating the plugin from paidmembershipspro.com. #3167 (@dparker1005) * ENHANCEMENT: Updated translation files bundled with the plugin. #3168 (@MaximilianoRicoTabo)