Skip to content

Commit

Permalink
1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrtashjian committed Jul 25, 2019
1 parent c97eba6 commit 1165244
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function test_properties() {
$new_reflection::register();

$expected = [
'version' => '1.11.0',
'version' => '1.12.0',
'slug' => 'coblocks',
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
];
Expand Down
2 changes: 1 addition & 1 deletion .dev/tests/phpunit/includes/test-coblocks-block-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function test_construct_constants() {
$new_reflection = new CoBlocks_Block_Assets();

$expected = [
'version' => '1.11.0',
'version' => '1.12.0',
'slug' => 'coblocks',
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function test_construct_constants() {
$new_reflection = new CoBlocks_Block_Settings();

$expected = [
'version' => '1.11.0',
'version' => '1.12.0',
'slug' => 'coblocks',
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
];
Expand Down
2 changes: 1 addition & 1 deletion .dev/tests/phpunit/includes/test-coblocks-font-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function test_construct_constants() {
$new_reflection = new CoBlocks_Font_Loader();

$expected = [
'version' => '1.11.0',
'version' => '1.12.0',
];

$version = $reflection->getProperty( '_version' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function test_construct_constants() {
$new_reflection = new CoBlocks_Google_Map_Block();

$expected = [
'version' => '1.11.0',
'version' => '1.12.0',
'slug' => 'coblocks',
'url' => str_replace( '/.dev/tests/phpunit', '', untrailingslashit( plugins_url( '/', dirname( __FILE__ ) ) ) ), // Fix inconsistencies path between plugin and unit tests
];
Expand Down
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' => '1.11.0',
'version' => '1.12.0',
'has_pro' => false,
'plugin_dir' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_path( __FILE__ ) ),
'plugin_url' => str_replace( '.dev/tests/phpunit/', '', plugin_dir_url( __FILE__ ) ),
Expand Down
4 changes: 2 additions & 2 deletions class-coblocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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: 1.11.0
* Version: 1.12.0
* Text Domain: coblocks
* Domain Path: /languages
* Tested up to: 5.2
Expand Down Expand Up @@ -97,7 +97,7 @@ public function __wakeup() {
* @return void
*/
private function constants() {
$this->define( 'COBLOCKS_VERSION', '1.11.0' );
$this->define( 'COBLOCKS_VERSION', '1.12.0' );
$this->define( 'COBLOCKS_HAS_PRO', false );
$this->define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
$this->define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "coblocks",
"title": "CoBlocks",
"description": "CoBlocks is a suite of professional page building blocks for the WordPress Gutenberg block editor.",
"version": "1.11.0",
"version": "1.12.0",
"tested_up_to": "5.2",
"author": "GoDaddy",
"license": "GPL-2.0",
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: page builder, Gutenberg blocks, WordPress blocks, gutenberg, blocks
Requires at least: 5.0
Tested up to: 5.2
Requires PHP: 5.2.4
Stable tag: 1.11.0
Stable tag: 1.12.0
License: GPL-2.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down

0 comments on commit 1165244

Please sign in to comment.