diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c171bf1b..e8d760d44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +#### [Version 2.3.0](https://github.com/Codeinwp/otter-blocks/compare/v2.2.7...v2.3.0) (2023-05-25) + +- Add Custom Taxonomy Support to Dynamic Values +- Add More New Fields to Form Block +- Add Option to Store Form Block Emails to WordPress Dashboard +- Add Api Field in Stripe Block +- Add Support for HTML in Stripe Block Messages +- Add CDN Links in Patterns +- Various Form Block Enhancements +- Bump Minimum PHP Compatibility to 5.6 +- Fix Dynamic Tags Not Working in Widgets +- Fix Review Comparison Table Not Taking Reusable Review Blocks into Consideration +- Fix Unused Assets Being Loaded When a Block Is Removed from Widgets +- Fix Custom CSS Module Not Working with FSE +- Fix Accordion Block Schema Conflicts with Neve PRO Performance Module and Lazy-loading Off-screen Elements + ##### [Version 2.2.7](https://github.com/Codeinwp/otter-blocks/compare/v2.2.6...v2.2.7) (2023-05-08) - Add Width Option to Form Block diff --git a/composer.json b/composer.json index b80dfac71..ac20dc7c2 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "codeinwp/otter-blocks", "description": "A set of awesome Gutenberg Blocks by ThemeIsle.", "type": "wordpress-plugin", - "version": "2.2.7", + "version": "2.3.0", "require-dev": { "squizlabs/php_codesniffer": "^3.3", "wp-coding-standards/wpcs": "^1", diff --git a/otter-blocks.php b/otter-blocks.php index 116880d28..8462bf6b1 100644 --- a/otter-blocks.php +++ b/otter-blocks.php @@ -7,7 +7,7 @@ * Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg * Plugin URI: https://themeisle.com/plugins/otter-blocks * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages. - * Version: 2.2.7 + * Version: 2.3.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-2.0+ @@ -26,7 +26,7 @@ define( 'OTTER_BLOCKS_BASEFILE', __FILE__ ); define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) ); define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) ); -define( 'OTTER_BLOCKS_VERSION', '2.2.7' ); +define( 'OTTER_BLOCKS_VERSION', '2.3.0' ); define( 'OTTER_BLOCKS_PRO_SUPPORT', true ); define( 'OTTER_BLOCKS_SHOW_NOTICES', false ); diff --git a/package-lock.json b/package-lock.json index 9d52525b2..c738c286d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "2.2.7", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ccca5125e..c91bc5b0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "2.2.7", + "version": "2.3.0", "description": "Otter – Page Builder Blocks & Extensions for Gutenberg", "scripts": { "build": "npm-run-all --parallel prod:*", diff --git a/plugins/blocks-animation/blocks-animation.php b/plugins/blocks-animation/blocks-animation.php index 220a5f879..ddf9f0790 100644 --- a/plugins/blocks-animation/blocks-animation.php +++ b/plugins/blocks-animation/blocks-animation.php @@ -10,7 +10,7 @@ * Plugin Name: Blocks Animation: CSS Animations for Gutenberg Blocks * Plugin URI: https://github.com/Codeinwp/otter-blocks * Description: Blocks Animation allows you to add CSS Animations to all of your Gutenberg blocks in the most elegent way. - * Version: 2.2.7 + * Version: 2.3.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-3.0+ diff --git a/plugins/blocks-css/blocks-css.php b/plugins/blocks-css/blocks-css.php index e58017ce2..72638abd2 100644 --- a/plugins/blocks-css/blocks-css.php +++ b/plugins/blocks-css/blocks-css.php @@ -10,7 +10,7 @@ * Plugin Name: Blocks CSS: CSS Editor for Gutenberg Blocks * Plugin URI: https://github.com/Codeinwp/otter-blocks * Description: Blocks CSS allows you add custom CSS to your Blocks straight from the Block Editor (Gutenberg). - * Version: 2.2.7 + * Version: 2.3.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-3.0+ diff --git a/plugins/otter-pro/otter-pro.php b/plugins/otter-pro/otter-pro.php index a9b49a5cd..4a17a6241 100644 --- a/plugins/otter-pro/otter-pro.php +++ b/plugins/otter-pro/otter-pro.php @@ -7,7 +7,7 @@ * Plugin Name: Otter Pro * Plugin URI: https://themeisle.com/plugins/otter-blocks * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages. - * Version: 2.2.7 + * Version: 2.3.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-2.0+ @@ -28,7 +28,7 @@ define( 'OTTER_PRO_PATH', dirname( __FILE__ ) ); define( 'OTTER_PRO_BUILD_URL', plugins_url( '/', __FILE__ ) . 'build/pro/' ); define( 'OTTER_PRO_BUILD_PATH', dirname( __FILE__ ) . '/build/pro/' ); -define( 'OTTER_PRO_VERSION', '2.2.7' ); +define( 'OTTER_PRO_VERSION', '2.3.0' ); require_once dirname( __FILE__ ) . '/autoloader.php'; $autoloader = new \ThemeIsle\OtterPro\Autoloader(); diff --git a/readme.md b/readme.md index 72e540db3..9244b93fc 100644 --- a/readme.md +++ b/readme.md @@ -229,6 +229,25 @@ The Patterns have been designed to make it easier for you to build your site usi ## Changelog ## +#### [Version 2.3.0](https://github.com/Codeinwp/otter-blocks/compare/v2.2.7...v2.3.0) (2023-05-25) + +- Add Custom Taxonomy Support to Dynamic Values +- Add More New Fields to Form Block +- Add Option to Store Form Block Emails to WordPress Dashboard +- Add Api Field in Stripe Block +- Add Support for HTML in Stripe Block Messages +- Add CDN Links in Patterns +- Various Form Block Enhancements +- Bump Minimum PHP Compatibility to 5.6 +- Fix Dynamic Tags Not Working in Widgets +- Fix Review Comparison Table Not Taking Reusable Review Blocks into Consideration +- Fix Unused Assets Being Loaded When a Block Is Removed from Widgets +- Fix Custom CSS Module Not Working with FSE +- Fix Accordion Block Schema Conflicts with Neve PRO Performance Module and Lazy-loading Off-screen Elements + + + + ##### [Version 2.2.7](https://github.com/Codeinwp/otter-blocks/compare/v2.2.6...v2.2.7) (2023-05-08) - Add Width Option to Form Block diff --git a/readme.txt b/readme.txt index 54bb3f9be..eb40e2d45 100644 --- a/readme.txt +++ b/readme.txt @@ -229,6 +229,25 @@ The Patterns have been designed to make it easier for you to build your site usi == Changelog == +#### [Version 2.3.0](https://github.com/Codeinwp/otter-blocks/compare/v2.2.7...v2.3.0) (2023-05-25) + +- Add Custom Taxonomy Support to Dynamic Values +- Add More New Fields to Form Block +- Add Option to Store Form Block Emails to WordPress Dashboard +- Add Api Field in Stripe Block +- Add Support for HTML in Stripe Block Messages +- Add CDN Links in Patterns +- Various Form Block Enhancements +- Bump Minimum PHP Compatibility to 5.6 +- Fix Dynamic Tags Not Working in Widgets +- Fix Review Comparison Table Not Taking Reusable Review Blocks into Consideration +- Fix Unused Assets Being Loaded When a Block Is Removed from Widgets +- Fix Custom CSS Module Not Working with FSE +- Fix Accordion Block Schema Conflicts with Neve PRO Performance Module and Lazy-loading Off-screen Elements + + + + ##### [Version 2.2.7](https://github.com/Codeinwp/otter-blocks/compare/v2.2.6...v2.2.7) (2023-05-08) - Add Width Option to Form Block