Skip to content

Commit

Permalink
Bumps version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawardekar committed Nov 25, 2022
1 parent afa365b commit 65088c6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.2.2",
"version": "1.3.0",
"author": {
"name": "Darshan Sawardekar",
"email": "darshan@10up.com"
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.2.2
* Version: 1.3.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.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/' );
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 65088c6

Please sign in to comment.