From 2d4981072d8febeeceb8a98b5353a91e666059c8 Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Thu, 15 Jun 2023 06:55:51 +1000 Subject: [PATCH] version and changelog --- CHANGELOG.txt | 3 +++ package.json | 2 +- paid-memberships-pro.php | 4 ++-- readme.txt | 6 +++++- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bab4bdd9c..e505a2b13 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,7 @@ == Changelog == += 2.11.2 - 2023-06-14 +* BUG FIX: Reverting the application of the required attribute for required fields at checkout. This would break valid checkouts in some cases if required fields were hidden. We need to address this differently. #2516 (@ideadude) + = 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) diff --git a/package.json b/package.json index 1a4a2f08f..c11d9ae70 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "2.11.1", + "version": "2.11.2", "description": "WordPress Membership Plugin", "main": "webpack.config.js", "directories": { diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 137af267c..a073af2cb 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.1 + * Version: 2.11.2 * 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.1' ); +define( 'PMPRO_VERSION', '2.11.2' ); 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 9493494cc..62be37e1d 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: memberships, members, subscriptions, ecommerce, user registration, member, Requires at least: 5.2 Tested up to: 6.2.2 Requires PHP: 5.6 -Stable tag: 2.11.1 +Stable tag: 2.11.2 WordPress membership plugin: restrict content, accept member subscriptions with recurring payment. Includes user registration, login, & profile fields @@ -156,6 +156,10 @@ 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.11.2 - 2023-06-14 = +* BUG FIX: Reverting the application of the required attribute for required fields at checkout. This would break valid checkouts in some cases if required fields were hidden. We need to address this differently. #2516 (@ideadude) + += 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)