Skip to content

Commit

Permalink
Bumps version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawardekar committed Nov 23, 2022
1 parent 8da390c commit 479a098
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/' );
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 479a098

Please sign in to comment.