Skip to content

Commit c4484b0

Browse files
committed
Changelog and version numbers
1 parent ab5936a commit c4484b0

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
== Changelog ==
2-
= 3.7 RC1 - 2026-03-10 =
2+
= 3.7 RC2 - 2026-03-16 =
33
* FEATURE: Added native profile picture (avatar) support, allowing members to upload custom avatars managed entirely within PMPro instead of relying on Gravatar. #3597 (@ideadude)
44
* FEATURE: Added a Quick Search feature for navigating Memberships admin pages. #3563 (@dparker1005)
55
* FEATURE: Added Liquid-style template rendering for email bodies with support for variables, filters, and conditionals. #3584 (@dparker1005)
@@ -24,6 +24,7 @@
2424
* BUG FIX: Fixed dependencies for the content visibility block component to prevent enqueue issues. #3538 (@dparker1005)
2525
* BUG FIX: Fixed a default height prop warning in block editor components. #3540 (@dwanjuki)
2626
* BUG FIX: Fixed a console warning in WordPress 6.3+ by moving block asset enqueuing to the `enqueue_block_assets` hook. #3549 (@andrewlimaza)
27+
* BUG FIX: Fixed slashed level names displaying with backslashes in the setup wizard. #3617 (@dparker1005)
2728
* REFACTOR: Refactored the Stripe webhook handler into a new `PMPro_Stripe_Webhook_Handler` class. #3589 (@dparker1005)
2829
* REFACTOR: Removed unused test scripts. #3600 (@dparker1005)
2930
* DEPRECATED: Marked the Subscription Check Add On as deprecated on the Add Ons page. #3601 (@dwanjuki)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "paid-memberships-pro",
3-
"version": "3.6.99",
3+
"version": "3.6.991",
44
"description": "WordPress Membership Plugin",
55
"directories": {
66
"test": "tests"

paid-memberships-pro.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Paid Memberships Pro
44
* Plugin URI: https://www.paidmembershipspro.com
55
* Description: The Trusted Membership Platform That Grows with You
6-
* Version: 3.6.99
6+
* Version: 3.6.991
77
* Author: Paid Memberships Pro
88
* Author URI: https://www.paidmembershipspro.com
99
* Text Domain: paid-memberships-pro
@@ -16,7 +16,7 @@
1616
*/
1717

1818
// version constant
19-
define( 'PMPRO_VERSION', '3.6.99' );
19+
define( 'PMPRO_VERSION', '3.6.991' );
2020
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
2121
define( 'PMPRO_MIN_PHP_VERSION', '7.4' );
2222

readme.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: memberships, member, community, user profile, user registration
44
Requires at least: 5.2
55
Tested up to: 6.9
66
Requires PHP: 7.4
7-
Stable tag: 3.6.99
7+
Stable tag: 3.6.991
88
License: GPLv2
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -210,7 +210,7 @@ Not sure? You can find out by doing a bit a research.
210210
4. [Ask using our contact form](https://www.paidmembershipspro.com/contact/)
211211

212212
== Changelog ==
213-
= 3.7 RC1 - 2026-03-10 =
213+
= 3.7 RC2 - 2026-03-16 =
214214
* FEATURE: Added native profile picture (avatar) support, allowing members to upload custom avatars managed entirely within PMPro instead of relying on Gravatar. #3597 (@ideadude)
215215
* FEATURE: Added a Quick Search feature for navigating Memberships admin pages. #3563 (@dparker1005)
216216
* FEATURE: Added Liquid-style template rendering for email bodies with support for variables, filters, and conditionals. #3584 (@dparker1005)
@@ -235,6 +235,7 @@ Not sure? You can find out by doing a bit a research.
235235
* BUG FIX: Fixed dependencies for the content visibility block component to prevent enqueue issues. #3538 (@dparker1005)
236236
* BUG FIX: Fixed a default height prop warning in block editor components. #3540 (@dwanjuki)
237237
* BUG FIX: Fixed a console warning in WordPress 6.3+ by moving block asset enqueuing to the `enqueue_block_assets` hook. #3549 (@andrewlimaza)
238+
* BUG FIX: Fixed slashed level names displaying with backslashes in the setup wizard. #3617 (@dparker1005)
238239
* REFACTOR: Refactored the Stripe webhook handler into a new `PMPro_Stripe_Webhook_Handler` class. #3589 (@dparker1005)
239240
* REFACTOR: Removed unused test scripts. #3600 (@dparker1005)
240241
* DEPRECATED: Marked the Subscription Check Add On as deprecated on the Add Ons page. #3601 (@dwanjuki)

0 commit comments

Comments
 (0)