From 65088c639d48c3cfc179c905ff70da113b70d760 Mon Sep 17 00:00:00 2001 From: Darshan Sawardekar Date: Fri, 25 Nov 2022 20:22:42 +0530 Subject: [PATCH] Bumps version to 1.3.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- plugin.php | 4 ++-- readme.txt | 9 ++++++++- 5 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9f44a6..14705e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file, per [the Ke - todo +## [1.3.0] - 2022-11-25 + +- Adds support for hierarchical classification +- Improves WP CLI find command +- Adds inline filter hook documentation +- Updates screenshots + ## [1.2.2] - 2022-11-25 - Updates Documentation diff --git a/package-lock.json b/package-lock.json index 8c2a104..e30c6ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "block-catalog-plugin", - "version": "1.2.2", + "version": "1.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "block-catalog-plugin", - "version": "1.2.2", + "version": "1.3.0", "dependencies": { "prop-types": "^15.7.2" }, diff --git a/package.json b/package.json index bb23231..670d8ee 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.2.2", + "version": "1.3.0", "author": { "name": "Darshan Sawardekar", "email": "darshan@10up.com" diff --git a/plugin.php b/plugin.php index 67541eb..80c4e1b 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.2.2 + * Version: 1.3.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.2.2' ); +define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.3.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 7ad2715..c576376 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.2.2 +Stable tag: 1.3.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -69,6 +69,13 @@ add_filter( 'block_catalog_block_title', function( $title, $block_name, $block ) == Changelog == += 1.3.0 - 2022-11-25 = + +- Adds support for hierarchical classification +- Improves WP CLI find command +- Adds inline filter hook documentation +- Updates screenshots + = 1.2.2 - 2022-11-25 = - Updates Documentation