Skip to content

Commit f9d7191

Browse files
committed
1.15.0
1 parent b12ad05 commit f9d7191

11 files changed

+12
-12
lines changed

.dev/tests/phpunit/includes/test-coblocks-accordion-ie-support.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function test_properties() {
3737
$new_reflection::register();
3838

3939
$expected = [
40-
'version' => '1.14.0',
40+
'version' => '1.15.0',
4141
'slug' => 'coblocks',
4242
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
4343
];

.dev/tests/phpunit/includes/test-coblocks-block-assets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function test_construct_constants() {
5353
$new_reflection = new CoBlocks_Block_Assets();
5454

5555
$expected = [
56-
'version' => '1.14.0',
56+
'version' => '1.15.0',
5757
'slug' => 'coblocks',
5858
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
5959
];

.dev/tests/phpunit/includes/test-coblocks-block-settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function test_construct_constants() {
5353
$new_reflection = new CoBlocks_Block_Settings();
5454

5555
$expected = [
56-
'version' => '1.14.0',
56+
'version' => '1.15.0',
5757
'slug' => 'coblocks',
5858
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
5959
];

.dev/tests/phpunit/includes/test-coblocks-font-loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function test_construct_constants() {
5353
$new_reflection = new CoBlocks_Font_Loader();
5454

5555
$expected = [
56-
'version' => '1.14.0',
56+
'version' => '1.15.0',
5757
];
5858

5959
$version = $reflection->getProperty( '_version' );

.dev/tests/phpunit/includes/test-coblocks-google-map-block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function test_construct_constants() {
5353
$new_reflection = new CoBlocks_Google_Map_Block();
5454

5555
$expected = [
56-
'version' => '1.14.0',
56+
'version' => '1.15.0',
5757
'slug' => 'coblocks',
5858
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
5959
];

.dev/tests/phpunit/test-class-coblocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function test_constants() {
6969
$reflection_method->invoke( coblocks() );
7070

7171
$expected = [
72-
'version' => '1.14.0',
72+
'version' => '1.15.0',
7373
'has_pro' => false,
7474
'plugin_dir' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_path( __FILE__ ) ),
7575
'plugin_url' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_url( __FILE__ ) ),

class-coblocks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* 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.
66
* Author: GoDaddy
77
* Author URI: https://www.godaddy.com
8-
* Version: 1.14.0
8+
* Version: 1.15.0
99
* Text Domain: coblocks
1010
* Domain Path: /languages
1111
* Tested up to: 5.2.2
@@ -97,7 +97,7 @@ public function __wakeup() {
9797
* @return void
9898
*/
9999
private function constants() {
100-
$this->define( 'COBLOCKS_VERSION', '1.14.0' );
100+
$this->define( 'COBLOCKS_VERSION', '1.15.0' );
101101
$this->define( 'COBLOCKS_HAS_PRO', false );
102102
$this->define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
103103
$this->define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );

languages/coblocks.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2019 GoDaddy Operating Company, LLC. All Rights Reserved.
22
msgid ""
33
msgstr ""
4-
"Project-Id-Version: CoBlocks 1.14.0\n"
4+
"Project-Id-Version: CoBlocks 1.15.0\n"
55
"Report-Msgid-Bugs-To: https://github.com/godaddy/coblocks/issues\n"
66
"Last-Translator: plugins@godaddy.com\n"
77
"Language-Team: LANGUAGE <LL@li.org>\n"

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
@@ -2,7 +2,7 @@
22
"name": "coblocks",
33
"title": "CoBlocks",
44
"description": "CoBlocks is a suite of professional page building blocks for the WordPress Gutenberg block editor.",
5-
"version": "1.14.0",
5+
"version": "1.15.0",
66
"tested_up_to": "5.2.2",
77
"author": "GoDaddy",
88
"license": "GPL-2.0",

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tags: page builder, Gutenberg blocks, WordPress blocks, gutenberg, blocks
66
Requires at least: 5.0
77
Tested up to: 5.2.2
88
Requires PHP: 5.2.4
9-
Stable tag: 1.14.0
9+
Stable tag: 1.15.0
1010
License: GPL-2.0
1111
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1212

0 commit comments

Comments
 (0)