Skip to content

Commit

Permalink
chore: prepare for release 3.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Waldstein committed Aug 22, 2024
1 parent ffe41a3 commit d7bb629
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.15.0
* Version: 3.15.1
* Requires at least: 6.4
* Requires PHP: 7.2
* Text Domain: give
Expand Down Expand Up @@ -405,7 +405,7 @@ private function setup_constants()
{
// Plugin version.
if (!defined('GIVE_VERSION')) {
define('GIVE_VERSION', '3.15.0');
define('GIVE_VERSION', '3.15.1');
}

// 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.4
Tested up to: 6.6
Requires PHP: 7.2
Stable tag: 3.15.0
Stable tag: 3.15.1
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.15.1: Aug 22nd, 2024 =
* Fix: Resolved an issue with the Akismet integration preventing form submissions when settings are not yet configured

= 3.15.0: Aug 14th, 2024 =
* New: Added Akismet integration support to forms using the visual form builder
* New: Updated the onboarding wizard to create a new form with the visual form builder
Expand Down
2 changes: 1 addition & 1 deletion src/DonationSpam/EmailAddressWhiteList.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class EmailAddressWhiteList
protected $whitelistEmails;

/**
* @unreleased Add array type to enforce type.
* @since 3.15.1 Add array type to enforce type.
* @since 3.15.0
*/
public function __construct(array $whitelistEmails = [])
Expand Down
2 changes: 1 addition & 1 deletion src/DonationSpam/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ServiceProvider implements ServiceProviderInterface
public function register(): void
{
/**
* @unreleased Case filtered value as an array to enforce type.
* @since 3.15.1 Case filtered value as an array to enforce type.
* @since 3.15.0
*/
give()->singleton(EmailAddressWhiteList::class, function () {
Expand Down

0 comments on commit d7bb629

Please sign in to comment.