Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "responsive-block-editor-addons",
"version": "2.2.4",
"version": "2.2.5",
"description": "",
"author": "CyberChimps",
"license": "GPL-2.0-or-later",
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: block, blocks, block editor, page builder, gutenberg templates
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 5.6
Stable tag: 2.2.4
Stable tag: 2.2.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -216,6 +216,11 @@ This is how you can easily install the Responsive Gutenberg Blocks plugin on you

== Changelog ==

= 2.2.5 - 9th June 2026 =
* New - AI Content Writer: Introduced AI-powered content generation directly within the block editor to help create and refine content more efficiently.
* Improvement - Container Block: Introduced Hover Background Color option.
* Fix - Table of Contents Block: Bug fixes.

= 2.2.4 - 19th May 2026 =
* Fix - Table of Contents: The collapsible arrow not working in editor, image sizes setting not working, grey background color appearing on frontend during initial drag-and-drop but not in editor, icon touching the border on initial drag-and-drop, and Select Icon not working properly.
* Fix - CountUp Box: The "outline width" setting showing up for the Shaped option as well.
Expand Down
4 changes: 2 additions & 2 deletions responsive-block-editor-addons.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License: GPLv2 or later
* Text Domain: responsive-block-editor-addons
* Domain Path: /languages
* Version: 2.2.4
* Version: 2.2.5
*
* @package Responsive_Block_Editor_Addons
*/
Expand All @@ -19,7 +19,7 @@

define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_VER', '2.2.4' );
define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_VER', '2.2.5' );
define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_BASENAME', plugin_basename( __FILE__ ) );
define( 'RESPONSIVE_BLOCK_EDITOR_ADDONS_SEVEN_DAYS_IN_SECONDS', 604800 );

Expand Down
Loading