diff --git a/give.php b/give.php index 85e82702c2..4bc04e785b 100644 --- a/give.php +++ b/give.php @@ -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 @@ -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. diff --git a/readme.txt b/readme.txt index 2539586d7f..4ab1139602 100644 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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 diff --git a/src/DonationSpam/EmailAddressWhiteList.php b/src/DonationSpam/EmailAddressWhiteList.php index d4cd0ab619..13b61c5ab6 100644 --- a/src/DonationSpam/EmailAddressWhiteList.php +++ b/src/DonationSpam/EmailAddressWhiteList.php @@ -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 = []) diff --git a/src/DonationSpam/ServiceProvider.php b/src/DonationSpam/ServiceProvider.php index 6d2d87fdaf..ff48c6214f 100644 --- a/src/DonationSpam/ServiceProvider.php +++ b/src/DonationSpam/ServiceProvider.php @@ -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 () {