diff --git a/CHANGELOG.md b/CHANGELOG.md index 989e649..044e5b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file, per [the Ke - todo +## [1.4.0] - 2022-12-03 + +- Improves Core Block Display Titles logic +- Fixes parent term for blocks registered without namespace +- Improve Reusable Block detection +- Add hooks to support nested variations +- Adds unit tests + ## [1.3.2] - 2022-11-25 - Updates readme.txt diff --git a/package.json b/package.json index 57de31b..f815cb7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "block-catalog-plugin", "description": "Easily keep track of which Gutenberg Blocks are used across your site.", - "version": "1.3.2", + "version": "1.4.0", "author": { "name": "Darshan Sawardekar", "email": "darshan@10up.com" diff --git a/plugin.php b/plugin.php index c632390..824fde5 100755 --- a/plugin.php +++ b/plugin.php @@ -2,7 +2,7 @@ /** * Plugin Name: Block Catalog * Description: Easily keep track of which Gutenberg Blocks are used across your site. - * Version: 1.3.2 + * Version: 1.4.0 * Requires at least: 5.7 * Requires PHP: 7.4 * Author: Darshan Sawardekar, 10up @@ -17,7 +17,7 @@ // Useful global constants. -define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.3.2' ); +define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.4.0' ); define( 'BLOCK_CATALOG_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'BLOCK_CATALOG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); define( 'BLOCK_CATALOG_PLUGIN_INC', BLOCK_CATALOG_PLUGIN_PATH . 'includes/' ); diff --git a/readme.txt b/readme.txt index 50c9ebf..509375e 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: gutenberg, developer, blocks, custom blocks Requires at least: 5.7 Tested up to: 6.1 Requires PHP: 7.4 -Stable tag: 1.3.2 +Stable tag: 1.4.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -62,6 +62,14 @@ To address this you need to update your custom block registration. If this is ou - Minor docs updates += 1.4.0 - 2022-12-03 = + +- Improves Core Block Display Titles logic +- Fixes parent term for blocks registered without namespace +- Improve Reusable Block detection +- Add hooks to support nested variations +- Adds unit tests + = 1.3.0 - 2022-11-25 = - Adds support for hierarchical classification