From 479a09815682633b869d1a020fe99d2e844b3cf3 Mon Sep 17 00:00:00 2001 From: Darshan Sawardekar Date: Wed, 23 Nov 2022 13:55:56 +0530 Subject: [PATCH] Bumps version to 1.1.0 --- CHANGELOG.md | 8 +++++++- package-lock.json | 4 ++-- package.json | 2 +- plugin.php | 4 ++-- readme.txt | 2 +- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6957e2..43109b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,13 @@ All notable changes to this project will be documented in this file, per [the Ke - todo -## [1.0.0] - 2022-11-21 +## [1.1.0] - 2022-11-23 + +- Improves batch indexing for larger sites. +- Refactor delete index use batch mode. +- Improves error handling during indexing & deleting via WP-Admin. + +## [1.0.1] - 2022-11-21 - Initial release diff --git a/package-lock.json b/package-lock.json index 933455a..84deee5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "block-catalog-plugin", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "block-catalog-plugin", - "version": "1.0.1", + "version": "1.1.0", "dependencies": { "prop-types": "^15.7.2" }, diff --git a/package.json b/package.json index cbf299f..4cb1369 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.0.1", + "version": "1.1.0", "author": { "name": "Darshan Sawardekar", "email": "darshan@10up.com" diff --git a/plugin.php b/plugin.php index f39eba4..6dd823a 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.0.1 + * Version: 1.1.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.0.1' ); +define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.1.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 cc1c56c..50183e7 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: Easily keep track of which Gutenberg Blocks are used across y Requires at least: 5.7 Tested up to: 6.1 Requires PHP: 7.4 -Stable tag: 1.0.1 +Stable tag: 1.1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html