Skip to content

Commit

Permalink
Updating to version 3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
godaddy-wordpress-bot committed Nov 6, 2023
1 parent ccc3b00 commit a94b186
Show file tree
Hide file tree
Showing 6 changed files with 468 additions and 458 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.1.4',
'version' => '3.1.5',
'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
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
3.1.5 / 2023-11-06
===================
# Enhancements
* Compatibility changes for WP 6.4 [#2568](https://github.com/godaddy-wordpress/coblocks/pull/2568)

# Bug fix
* Fix performance around superfluous data-store selectors [#2575](https://github.com/godaddy-wordpress/coblocks/pull/2575)
* Fix missing animation scripts in some cases [#2576](https://github.com/godaddy-wordpress/coblocks/pull/2576)
* Fix php warning occurring in some cases [#2572](https://github.com/godaddy-wordpress/coblocks/pull/2572)

3.1.4 / 2023-09-07
===================
# 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.1.4
* Version: 3.1.5
* Text Domain: coblocks
* Domain Path: /languages
* Tested up to: 6.4
Expand All @@ -26,7 +26,7 @@
exit;
}

define( 'COBLOCKS_VERSION', '3.1.4' );
define( 'COBLOCKS_VERSION', '3.1.5' );
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 a94b186

Please sign in to comment.