Skip to content

Commit

Permalink
chore: prepare for 3.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Waldstein committed Oct 30, 2023
1 parent bc50c34 commit 1870177
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 17 deletions.
4 changes: 2 additions & 2 deletions give.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
* Author: GiveWP
* Author URI: https://givewp.com/
* Version: 3.0.3
* Version: 3.0.4
* Requires at least: 6.0
* Requires PHP: 7.2
* Text Domain: give
Expand Down Expand Up @@ -391,7 +391,7 @@ private function setup_constants()
{
// Plugin version.
if (!defined('GIVE_VERSION')) {
define('GIVE_VERSION', '3.0.2');
define('GIVE_VERSION', '3.0.4');
}

// Plugin Root File.
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: donation, donate, recurring donations, fundraising, crowdfunding
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.2
Stable tag: 3.0.3
Stable tag: 3.0.4
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -262,6 +262,9 @@ The 2% fee on Stripe donations only applies to donations taken via our free Stri
10. Use almost any payment gateway integration with GiveWP through our add-ons or by creating your own add-on.

== Changelog ==
= 3.0.4: October 30th, 2023 =
* Fix: Resolved issue with Stripe webhook not recording recurring donation renewals

= 3.0.3: October 20th, 2023 =
* Fix: Using the multi-form shortcode with the ids attribute no longer causes a fatal error

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ChargeRefunded
*
* @see https://stripe.com/docs/api/events/types#event_types-charge.refunded
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -40,7 +40,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
*
* @throws Exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CustomerSubscriptionCreated
*
* @see https://stripe.com/docs/api/events/types#event_types-customer.subscription.created
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -38,7 +38,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
*/
public function processEvent(Event $event): bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CustomerSubscriptionDeleted
*
* @see https://stripe.com/docs/api/events/types#event_types-customer.subscription.deleted
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -39,7 +39,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
* @throws Exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class InvoicePaymentFailed
*
* @see https://stripe.com/docs/api/events/types#event_types-invoice.payment_failed
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -39,7 +39,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
*
* @throws Exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class InvoicePaymentSucceeded
*
* @see https://stripe.com/docs/api/events/types#event_types-invoice.payment_succeeded
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @throws \Exception
Expand All @@ -42,7 +42,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
* @throws \Exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PaymentIntentPaymentFailed
*
* @see https://stripe.com/docs/api/events/types#event_types-payment_intent.payment_failed
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -40,7 +40,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
*/
public function processEvent(Event $event): bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class PaymentIntentSucceeded
*
* @see https://stripe.com/docs/api/events/types#event_types-invoice.payment_succeeded
*
* @unreleased Add exit statement only when the event is successfully processed.
* @since 3.0.4 Add exit statement only when the event is successfully processed.
* @since 3.0.0
*
* @return void
Expand All @@ -40,7 +40,7 @@ public function __invoke(Event $event)
}

/**
* @unreleased Return a bool value.
* @since 3.0.4 Return a bool value.
* @since 3.0.0
*/
public function processEvent(Event $event): bool
Expand Down

0 comments on commit 1870177

Please sign in to comment.