Skip to content

Commit fdb5b74

Browse files
committed
Changelog and version numbers
1 parent 4399ad7 commit fdb5b74

8 files changed

Lines changed: 25 additions & 9 deletions

File tree

CHANGELOG.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
== Changelog ==
2+
= 3.4.4 - 2025-03-19 =
3+
* ENHANCEMENT: Improved accessibility and styling for pagination HTML generated by the `pmpro_getPaginationString()` function. #3343 (@kimcoleman)
4+
* ENHANCEMENT: Updated the `pmpro_int_compare()` function to allow passing '!=' as the comparison operator. #3344 (@andrewlimaza)
5+
* BUG FIX: Fixed an issue where `date` user fields would not output the correct value when using the `displayValue()` method. #3336 (@kimcoleman)
6+
* BUG FIX: Fixed an issue where order totals would not be formatted correctly in refund emails. #3341 (@MaximilianoRicoTabo)
7+
* BUG FIX: Fixed a PHP warning that would occur when using the `[pmpro_member]` shortcode to view information about a member that does not exist. #3337 (@andrewlimaza)
8+
* BUG FIX: Fixed a PHP warning that would occur when rendering the "single level description" block in the editor for a level without a description set. #3335 (@kimcoleman)
9+
210
= 3.4.3 - 2025-03-06 =
311
* ENHANCEMENT: Now hiding the "Members Only" access plan in LifterLMS when the Lifter Streamline is enabled.
412
* BUG FIX/ENHANCEMENT: Now showing the correct email template variables for the header and footer templates. #3314 (@dparker1005)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-element', 'wp-i18n'), 'version' => '8b1d66ec33480d6a6cd3');
1+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-element', 'wp-i18n'), 'version' => 'ba2d812108bde8ba8b43');

blocks/build/single-level-description/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blocks/build/single-level-description/render.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
// Get the level description.
77
$level = pmpro_getLevel( $attributes['selected_membership_level'] );
8-
$level_description = apply_filters( 'pmpro_level_description', $level->description, $level );
9-
$level_description = wp_kses_post( $level_description );
8+
$level_description = isset( $level->description ) ? $level->description : '';
9+
$level_description = wp_kses_post( apply_filters( 'pmpro_level_description', $level_description, $level ) );
1010

1111
// Return if level description is empty.
1212
if ( empty( $level_description ) ) {

includes/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4099,7 +4099,7 @@ function pmpro_check_plugin_version( $plugin_file, $comparison, $version ) {
40994099
* This allows us to pass in a comparison character via the notification rules
41004100
* and get a true/false result.
41014101
*
4102-
* @since TBD Added support for != and <>.
4102+
* @since 3.4.4 Added support for != and <>.
41034103
*
41044104
* @param int $a First integer to compare.
41054105
* @param int $b Second integer to compare.

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.4.3",
3+
"version": "3.4.4",
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.4.3
6+
* Version: 3.4.4
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.4.3' );
19+
define( 'PMPRO_VERSION', '3.4.4' );
2020
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
2121
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
2222

readme.txt

Lines changed: 9 additions & 1 deletion
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.8
66
Requires PHP: 5.6
7-
Stable tag: 3.4.3
7+
Stable tag: 3.4.4
88
License: GPLv2
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -204,6 +204,14 @@ Not sure? You can find out by doing a bit a research.
204204
4. [Ask using our contact form](https://www.paidmembershipspro.com/contact/)
205205

206206
== Changelog ==
207+
= 3.4.4 - 2025-03-19 =
208+
* ENHANCEMENT: Improved accessibility and styling for pagination HTML generated by the `pmpro_getPaginationString()` function. #3343 (@kimcoleman)
209+
* ENHANCEMENT: Updated the `pmpro_int_compare()` function to allow passing '!=' as the comparison operator. #3344 (@andrewlimaza)
210+
* BUG FIX: Fixed an issue where `date` user fields would not output the correct value when using the `displayValue()` method. #3336 (@kimcoleman)
211+
* BUG FIX: Fixed an issue where order totals would not be formatted correctly in refund emails. #3341 (@MaximilianoRicoTabo)
212+
* BUG FIX: Fixed a PHP warning that would occur when using the `[pmpro_member]` shortcode to view information about a member that does not exist. #3337 (@andrewlimaza)
213+
* BUG FIX: Fixed a PHP warning that would occur when rendering the "single level description" block in the editor for a level without a description set. #3335 (@kimcoleman)
214+
207215
= 3.4.3 - 2025-03-06 =
208216
* ENHANCEMENT: Now hiding the "Members Only" access plan in LifterLMS when the Lifter Streamline is enabled.
209217
* BUG FIX/ENHANCEMENT: Now showing the correct email template variables for the header and footer templates. #3314 (@dparker1005)

0 commit comments

Comments
 (0)