Skip to content

Commit 3755074

Browse files
committed
Changelog and version numbers
1 parent 03aaf1c commit 3755074

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
== Changelog ==
2+
= 3.3.1 - 2024-10-24 =
3+
* ENHANCEMENT: Added a Subscriptions List Table to allow admins to view, manage, and link subscriptions from the WordPress admin. #2828 (@dparker1005, @kimcoleman)
4+
* ENHANCEMENT: Discount codes can now be set to only allow one use per user. #3175 (@dparker1005)
5+
* 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)
6+
27
= 3.3 - 2024-10-16 =
38
* FEATURE: Now updating the plugin from paidmembershipspro.com. #3167 (@dparker1005)
49
* ENHANCEMENT: Updated translation files bundled with the plugin. #3168 (@MaximilianoRicoTabo)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "paid-memberships-pro",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "WordPress Membership Plugin",
55
"directories": {
66
"test": "tests"

paid-memberships-pro.php

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

readme.txt

+6-1
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.6.2
66
Requires PHP: 5.6
7-
Stable tag: 3.3
7+
Stable tag: 3.3.1
88
License: GPLv2
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -204,6 +204,11 @@ 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.3.1 - 2024-10-24 =
208+
* ENHANCEMENT: Added a Subscriptions List Table to allow admins to view, manage, and link subscriptions from the WordPress admin. #2828 (@dparker1005, @kimcoleman)
209+
* ENHANCEMENT: Discount codes can now be set to only allow one use per user. #3175 (@dparker1005)
210+
* 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)
211+
207212
= 3.3 - 2024-10-16 =
208213
* FEATURE: Now updating the plugin from paidmembershipspro.com. #3167 (@dparker1005)
209214
* ENHANCEMENT: Updated translation files bundled with the plugin. #3168 (@MaximilianoRicoTabo)

0 commit comments

Comments
 (0)