Skip to content

Commit

Permalink
Updating to version 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
godaddy-wordpress-bot committed Aug 10, 2023
1 parent aeb84ab commit 5cc33b9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 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.1',
'version' => '3.1.2',
'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
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
3.1.2 / 2023-08-10
===================
# Bug fix
* Resolve Shape Divider bug [#2553](https://github.com/godaddy-wordpress/coblocks/pull/2553)
* Resolve Form Label warning [#2555](https://github.com/godaddy-wordpress/coblocks/pull/2555)
* Resolve Form Array condition [#2556](https://github.com/godaddy-wordpress/coblocks/pull/2556)

3.1.2 / 2023-08-10
===================
# 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.1
* Version: 3.1.2
* Text Domain: coblocks
* Domain Path: /languages
* Tested up to: 6.3
Expand All @@ -26,7 +26,7 @@
exit;
}

define( 'COBLOCKS_VERSION', '3.1.1' );
define( 'COBLOCKS_VERSION', '3.1.2' );
define( 'COBLOCKS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'COBLOCKS_PLUGIN_FILE', __FILE__ );
Expand Down
20 changes: 10 additions & 10 deletions languages/coblocks.pot
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Copyright (c) 2023 GoDaddy Operating Company, LLC. All Rights Reserved.
msgid ""
msgstr ""
"Project-Id-Version: CoBlocks 3.1.1\n"
"Project-Id-Version: CoBlocks 3.1.2\n"
"Report-Msgid-Bugs-To: https://github.com/godaddy-wordpress/coblocks/issues\n"
"Last-Translator: plugins@godaddy.com\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-08-10T21:29:02+00:00\n"
"POT-Creation-Date: 2023-08-10T22:06:10+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: coblocks\n"
Expand Down Expand Up @@ -92,7 +92,7 @@ msgstr ""
#. translators: block keyword
#. translators: icon keyword
#: includes/class-coblocks-form.php:51
#: includes/class-coblocks-form.php:1016
#: includes/class-coblocks-form.php:1024
#: src/blocks/form/edit.js:288
#: src/blocks/form/fields/field-name/index.js:30
#: src/blocks/icon/deprecated/svgs.js:691
Expand Down Expand Up @@ -203,39 +203,39 @@ msgid "Choose one"
msgstr ""

#. translators: block name
#: includes/class-coblocks-form.php:506
#: includes/class-coblocks-form.php:555
#: includes/class-coblocks-form.php:508
#: includes/class-coblocks-form.php:557
#: src/blocks/form/fields/field-select/index.js:23
#: src/blocks/form/fields/field-select/transforms.js:14
msgid "Select"
msgstr ""

#: includes/class-coblocks-form.php:586
#: includes/class-coblocks-form.php:588
msgid "Please select at least one checkbox."
msgstr ""

#. translators: block name
#: includes/class-coblocks-form.php:637
#: includes/class-coblocks-form.php:639
#: src/blocks/form/fields/field-website/index.js:23
#: src/blocks/form/fields/field-website/transforms.js:14
msgid "Website"
msgstr ""

#. translators: block name
#: includes/class-coblocks-form.php:671
#: includes/class-coblocks-form.php:673
#: src/blocks/form/fields/field-hidden/index.js:23
#: src/blocks/form/fields/field-hidden/transforms.js:14
msgid "Hidden"
msgstr ""

#. translators: block name
#: includes/class-coblocks-form.php:751
#: includes/class-coblocks-form.php:753
#: src/blocks/form/edit.js:131
#: src/blocks/form/fields/field-submit-button/index.js:49
msgid "Submit"
msgstr ""

#: includes/class-coblocks-form.php:1007
#: includes/class-coblocks-form.php:1015
#: src/blocks/form/edit.js:294
msgid "name"
msgstr ""
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": "3.1.1",
"version": "3.1.2",
"tested_up_to": "6.3",
"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 @@ -5,7 +5,7 @@ Tags: page builder, Gutenberg blocks, WordPress blocks, gutenberg, blocks
Requires at least: 6.2
Tested up to: 6.3
Requires PHP: 7.4
Stable tag: 3.1.1
Stable tag: 3.1.2
License: GPL-2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down

0 comments on commit 5cc33b9

Please sign in to comment.