diff --git a/give.php b/give.php index ceaa4be3fe..8ea076fbab 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.1.0 + * Version: 3.1.1 * Requires at least: 6.0 * Requires PHP: 7.2 * Text Domain: give @@ -391,7 +391,7 @@ private function setup_constants() { // Plugin version. if (!defined('GIVE_VERSION')) { - define('GIVE_VERSION', '3.1.0'); + define('GIVE_VERSION', '3.1.1'); } // Plugin Root File. diff --git a/readme.txt b/readme.txt index 8f648a38d0..be8445ad4c 100644 --- a/readme.txt +++ b/readme.txt @@ -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.1.0 +Stable tag: 3.1.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.1.1: November 3rd, 2023 = +* Fix: Embedded forms created with the Visual Builder now redirect to the confirmation page after a completed donation. + = 3.1.0: October 25th, 2023 = * Feature: Design Mode changes in the Form Builder are now instant and awesome! Instant gratification! * Feature: Donor prefixes can now easily be reordered in the Donor Name block diff --git a/src/DonationForms/Shortcodes/GiveFormShortcode.php b/src/DonationForms/Shortcodes/GiveFormShortcode.php index 30a78890ea..d36a71ab75 100644 --- a/src/DonationForms/Shortcodes/GiveFormShortcode.php +++ b/src/DonationForms/Shortcodes/GiveFormShortcode.php @@ -13,7 +13,7 @@ class GiveFormShortcode public static $instance = 0; /** - * @unreleased use static instance ID to simulate blockId attribute + * @since 3.1.1 use static instance ID to simulate blockId attribute * @since 3.0.0 */ public function __invoke(string $output, array $atts): string