Skip to content

Commit 7fcc6d0

Browse files
committed
chore(release): 2.3.3
##### [Version 2.3.3](v2.3.2...v2.3.3) (2023-08-11) - WordPress 6.3 Compatibility
1 parent 2a0f573 commit 7fcc6d0

File tree

10 files changed

+28
-19
lines changed

10 files changed

+28
-19
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##### [Version 2.3.3](https://github.com/Codeinwp/otter-blocks/compare/v2.3.2...v2.3.3) (2023-08-11)
2+
3+
- WordPress 6.3 Compatibility
4+
15
##### [Version 2.3.2](https://github.com/Codeinwp/otter-blocks/compare/v2.3.1...v2.3.2) (2023-07-17)
26

37
- Added Autoresponder to Stripe Block

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codeinwp/otter-blocks",
33
"description": "A set of awesome Gutenberg Blocks by ThemeIsle.",
44
"type": "wordpress-plugin",
5-
"version": "2.3.2",
5+
"version": "2.3.3",
66
"require-dev": {
77
"squizlabs/php_codesniffer": "^3.3",
88
"wp-coding-standards/wpcs": "^1",

otter-blocks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg
88
* Plugin URI: https://themeisle.com/plugins/otter-blocks
99
* 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.
10-
* Version: 2.3.2
10+
* Version: 2.3.3
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-2.0+
@@ -26,7 +26,7 @@
2626
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
2727
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
2828
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
29-
define( 'OTTER_BLOCKS_VERSION', '2.3.2' );
29+
define( 'OTTER_BLOCKS_VERSION', '2.3.3' );
3030
define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
3131
define( 'OTTER_BLOCKS_SHOW_NOTICES', false );
3232

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "otter-blocks",
3-
"version": "2.3.2",
3+
"version": "2.3.3",
44
"description": "Otter – Page Builder Blocks & Extensions for Gutenberg",
55
"scripts": {
66
"build": "npm-run-all --parallel prod:*",

plugins/blocks-animation/blocks-animation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Blocks Animation: CSS Animations for Gutenberg Blocks
1111
* Plugin URI: https://github.com/Codeinwp/otter-blocks
1212
* Description: Blocks Animation allows you to add CSS Animations to all of your Gutenberg blocks in the most elegent way.
13-
* Version: 2.3.2
13+
* Version: 2.3.3
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* License: GPL-3.0+

plugins/blocks-css/blocks-css.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Blocks CSS: CSS Editor for Gutenberg Blocks
1111
* Plugin URI: https://github.com/Codeinwp/otter-blocks
1212
* Description: Blocks CSS allows you add custom CSS to your Blocks straight from the Block Editor (Gutenberg).
13-
* Version: 2.3.2
13+
* Version: 2.3.3
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* License: GPL-3.0+

plugins/otter-pro/otter-pro.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Otter Pro
88
* Plugin URI: https://themeisle.com/plugins/otter-blocks
99
* 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.
10-
* Version: 2.3.2
10+
* Version: 2.3.3
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-2.0+
@@ -28,7 +28,7 @@
2828
define( 'OTTER_PRO_PATH', dirname( __FILE__ ) );
2929
define( 'OTTER_PRO_BUILD_URL', plugins_url( '/', __FILE__ ) . 'build/pro/' );
3030
define( 'OTTER_PRO_BUILD_PATH', dirname( __FILE__ ) . '/build/pro/' );
31-
define( 'OTTER_PRO_VERSION', '2.3.2' );
31+
define( 'OTTER_PRO_VERSION', '2.3.3' );
3232

3333
require_once dirname( __FILE__ ) . '/autoloader.php';
3434
$autoloader = new \ThemeIsle\OtterPro\Autoloader();

readme.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Otter is a Gutenberg Blocks page builder plugin that adds extra functionality to
2121
- Need any help with setup? Checkout our [DOCUMENTATION](https://docs.themeisle.com/article/1478-otter-blocks-documentation)
2222
- Interested in Otter Pro? Here are more details about [OTTER PRO](https://themeisle.com/plugins/otter-blocks/upgrade/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks)
2323

24-
2524
## With Otter Blocks, You Get Access To
2625

2726
- 23+ extra blocks for Gutenberg
@@ -72,7 +71,7 @@ Want to show certain blocks only when a user is Logged in or Logged Out? How abo
7271

7372
### A WordPress Gutenberg Blocks Animation Plugin
7473

75-
WOW, your website visitors with amazing animations that can be added to any block on the page. With over 50+ animations available to choose from; Otter makes it possible to add some extra flare to any post or page on your website
74+
WOW your website visitors with amazing animations that can be added to any block on the page. With over 50+ animations available to choose from; Otter makes it possible to add some extra flare to any post or page on your website
7675

7776
### A WordPress Gutenberg Popup Plugin
7877

@@ -84,12 +83,6 @@ With our popup block, you gain access to multiple triggers such as on load, on e
8483

8584
Tired of always having to set the same options every time you add a block to the page? With Otter, you can set the default configuration for some of the most commonly used blocks like the Section Block, Icon Block, Advanced Heading and more.
8685

87-
### Impact on Page Loading Speed and Performance
88-
At Otter Blocks, we prioritize performance to elevate your website's user experience. Each block is carefully optimized, striking the perfect balance between speed, design, and functionality.
89-
90-
### Enhance your Posts with Otter Blocks
91-
Discover a Wide Range of Post Blocks for Engaging Content, with Otter Block's post blocks, you can elevate your posts to new heights. From interactive accordions for FAQs to product reviews, countdowns, maps, and more, our versatile post blocks enrich your content seamlessly.
92-
9386
## Blocks Available in Otter
9487

9588
#### Section Gutenberg Block [FREE]
@@ -184,7 +177,6 @@ Get ready to impress your readers with Otter's "Review Comparison Table" block.
184177

185178
The Live Search feature enhances the core block Search by adding two additional attributes ( isLive and postTypes ) that can be set inside the inspector under the Live Search panel.
186179

187-
188180
---
189181

190182
We're constantly adding new Gutenberg Blocks to Otter to assist in your website page building. Feel free to tell us what we’re missing on our [Support Forum](https://wordpress.org/support/plugin/otter-blocks/)! Some other blocks include:
@@ -264,7 +256,6 @@ Otter Blocks is an open-source project, and we welcome contributors to be part o
264256
- Interested in our other plugins? Take a look [here](https://themeisle.com/wordpress-plugins/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks).
265257
- Get the most out of Otter Blocks with our helpful [YouTube Tutorials Playlist](https://youtube.com/playlist?list=PLmRasCVwuvpSep2MOsIoE0ncO9JE3FcKP).
266258

267-
268259
## Screenshots ##
269260

270261
1. Gutenberg Block Animations
@@ -317,6 +308,13 @@ The Patterns have been designed to make it easier for you to build your site usi
317308

318309
## Changelog ##
319310

311+
##### [Version 2.3.3](https://github.com/Codeinwp/otter-blocks/compare/v2.3.2...v2.3.3) (2023-08-11)
312+
313+
- WordPress 6.3 Compatibility
314+
315+
316+
317+
320318
##### [Version 2.3.2](https://github.com/Codeinwp/otter-blocks/compare/v2.3.1...v2.3.2) (2023-07-17)
321319

322320
- Added Autoresponder to Stripe Block

readme.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,13 @@ The Patterns have been designed to make it easier for you to build your site usi
308308

309309
== Changelog ==
310310

311+
##### [Version 2.3.3](https://github.com/Codeinwp/otter-blocks/compare/v2.3.2...v2.3.3) (2023-08-11)
312+
313+
- WordPress 6.3 Compatibility
314+
315+
316+
317+
311318
##### [Version 2.3.2](https://github.com/Codeinwp/otter-blocks/compare/v2.3.1...v2.3.2) (2023-07-17)
312319

313320
- Added Autoresponder to Stripe Block

0 commit comments

Comments
 (0)