Skip to content

Commit 419139a

Browse files
authored
Merge pull request #97 from firetreedesign/v1.4.5
Fixed an issue when loading the Widgets page in the WordPress Admin.
2 parents cf6ce45 + 17e72ee commit 419139a

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

ccbpress-core.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Church Data Connect for Church Community Builder
44
* Plugin URI: https://churchdataconnect.com/
55
* Description: Display information from Church Community Builder on your WordPress site.
6-
* Version: 1.4.4
6+
* Version: 1.4.5
77
* Author: FireTree Design, LLC <info@firetreedesign.com>
88
* Author URI: https://firetreedesign.com/
99
* Text Domain: ccbpress-core
@@ -66,7 +66,7 @@ class CCBPress_Core {
6666
* @var string
6767
* @since 1.0.0
6868
*/
69-
public $version = '1.4.4';
69+
public $version = '1.4.5';
7070

7171
/**
7272
* Main CCBPress_Core Instance

includes/class-ccbpress-core-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static function enqueue_block_editor_assets() {
7373
wp_enqueue_script(
7474
'ccbpress-core-block-js', // Handle.
7575
plugins_url( $editor_block_path, CCBPRESS_CORE_PLUGIN_FILE ), // Block.build.js: We register the block here. Built with Webpack.
76-
array( 'wp-i18n', 'wp-element', 'wp-components', 'wp-blocks', 'wp-editor' ), // Dependencies, defined above.
76+
array( 'wp-i18n', 'wp-element', 'wp-components', 'wp-blocks', 'wp-block-editor' ), // Dependencies, defined above.
7777
filemtime( plugin_dir_path( CCBPRESS_CORE_PLUGIN_FILE ) . $editor_block_path ),
7878
true
7979
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccbpress-core",
3-
"version": "1.4.4",
3+
"version": "1.4.5",
44
"private": true,
55
"scripts": {
66
"start": "cgb-scripts start",

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: church, ccb, church community builder, chms, gutenberg
44
Requires at least: 4.3
55
Tested up to: 5.9
66
Requires PHP: 5.3
7-
Stable tag: 1.4.4
7+
Stable tag: 1.4.5
88
License: GPLv2 or later
99
License URI: http://ww.gnu.org/licenses/gpl-2.0.html
1010

@@ -45,6 +45,9 @@ Extend the capabilities of Church Data Connect for Church Community Builder with
4545

4646
== Changelog ==
4747

48+
= 1.4.5 =
49+
* Fixed an issue when loading the Widgets page in the WordPress Admin.
50+
4851
= 1.4.4 =
4952
* Changes to the rate limit formula for retrieving data from Church Community Builder.
5053
* Removed some deprecated JavaScript code.

0 commit comments

Comments
 (0)