Skip to content

Commit

Permalink
Updating to version 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
godaddy-wordpress-bot committed Apr 20, 2023
1 parent a89bb9f commit ba36a40
Show file tree
Hide file tree
Showing 6 changed files with 128 additions and 118 deletions.
2 changes: 1 addition & 1 deletion .dev/tests/phpunit/test-class-coblocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function test_constants() {
$reflection_method->invoke( coblocks() );

$expected = [
'version' => '3.0.2',
'version' => '3.0.3',
'plugin_dir' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_path( __FILE__ ) ),
'plugin_url' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_url( __FILE__ ) ),
'plugin_file' => str_replace( '.dev/tests/phpunit/test-class-coblocks.php', 'class-coblocks.php', __FILE__ ),
Expand Down
12 changes: 12 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
3.0.3 / 2023-04-20
===================
# Bug fix
- Fix Layout Selector styles in WordPress 6.2. [#2518](https://github.com/godaddy-wordpress/coblocks/pull/2518)
- Fix Gallery Carousel in the site editor. [#2519](https://github.com/godaddy-wordpress/coblocks/pull/2519)
- Fix Carousel block in WordPress 6.2. [#2525](https://github.com/godaddy-wordpress/coblocks/pull/2525)
- Fix migrating blocks with special characters. [#2526](https://github.com/godaddy-wordpress/coblocks/pull/2526)

# Misc
- Remove temporary linting rules. [#2520](https://github.com/godaddy-wordpress/coblocks/pull/2520)
- Add logic so that we use core/buttons instead of core/button. [#2527](https://github.com/godaddy-wordpress/coblocks/pull/2527)

3.0.3 / 2023-04-20
===================
# Bug fix
Expand Down
4 changes: 2 additions & 2 deletions class-coblocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: CoBlocks is a suite of professional <strong>page building content blocks</strong> for the WordPress Gutenberg block editor. Our blocks are hyper-focused on empowering makers to build beautifully rich pages in WordPress.
* Author: GoDaddy
* Author URI: https://www.godaddy.com
* Version: 3.0.2
* Version: 3.0.3
* Text Domain: coblocks
* Domain Path: /languages
* Tested up to: 6.2
Expand All @@ -25,7 +25,7 @@
exit;
}

define( 'COBLOCKS_VERSION', '3.0.2' );
define( 'COBLOCKS_VERSION', '3.0.3' );
define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_FILE', __FILE__ );
Expand Down
Loading

0 comments on commit ba36a40

Please sign in to comment.