diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 53fecea73..bab4bdd9c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,12 @@ == Changelog == += 2.11.1 - 2023-06-13 +* ENHANCEMENT: Now using HTML5 required field attribute on required fields at membership checkout.#2511 (@kimcoleman) +* ENHANCEMENT: Better wording for the "Disconnect from Stripe" button in the payment settings so folks understand this will disconnect ANY site connected to Stripe through that account. #2514 (@dparker1005) +* BUG FIX/ENHANCEMENT: Removed the "What's This?" text from the CVV field on Membership Billing page. #2512 (@kimcoleman) +* BUG FIX/ENHANCEMENT: Minor fixes to the Orders List Table. #2509 (@dparker1005) +* BUG FIX/ENHANCEMENT: Fixed the text domains for the default headings for the account page shortcode. #2508 (@dparker1005) +* BUG FIX/ENHANCEMENT: Fixed the default page titles when using the account block. #2505 (@dparker1005) + = 2.11 - 2023-06-07 = * FEATURE: Now tracking users that are created at checkout but never complete checkout or otherwise use the site. These users can be found and deleted from the Users Table in the admin dashboard. #2435 (@dparker1005, @ideadude) * FEATURE: Added compatibility with Oxygen Builder. #2404 (@JarrydLong) diff --git a/package.json b/package.json index 7a61e8712..1a4a2f08f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "2.11.0", + "version": "2.11.1", "description": "WordPress Membership Plugin", "main": "webpack.config.js", "directories": { diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 0f9851999..137af267c 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.11 + * Version: 2.11.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', '2.11' ); +define( 'PMPRO_VERSION', '2.11.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 3ffe99268..9493494cc 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershipspro 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: 5.2 -Tested up to: 6.2 +Tested up to: 6.2.2 Requires PHP: 5.6 -Stable tag: 2.11 +Stable tag: 2.11.1 WordPress membership plugin: restrict content, accept member subscriptions with recurring payment. Includes user registration, login, & profile fields @@ -156,6 +156,13 @@ 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 == +* ENHANCEMENT: Now using HTML5 required field attribute on required fields at membership checkout.#2511 (@kimcoleman) +* ENHANCEMENT: Better wording for the "Disconnect from Stripe" button in the payment settings so folks understand this will disconnect ANY site connected to Stripe through that account. #2514 (@dparker1005) +* BUG FIX/ENHANCEMENT: Removed the "What's This?" text from the CVV field on Membership Billing page. #2512 (@kimcoleman) +* BUG FIX/ENHANCEMENT: Minor fixes to the Orders List Table. #2509 (@dparker1005) +* BUG FIX/ENHANCEMENT: Fixed the text domains for the default headings for the account page shortcode. #2508 (@dparker1005) +* BUG FIX/ENHANCEMENT: Fixed the default page titles when using the account block. #2505 (@dparker1005) + = 2.11 - 2023-06-07 = * FEATURE: Now tracking users that are created at checkout but never complete checkout or otherwise use the site. These users can be found and deleted from the Users Table in the admin dashboard. #2435 (@dparker1005, @ideadude) * FEATURE: Added compatibility with Oxygen Builder. #2404 (@JarrydLong)