Skip to content

Commit

Permalink
Bumps version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawardekar committed Dec 3, 2022
1 parent 9eb0be5 commit e0fa1fd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.3.2",
"version": "1.4.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.3.2
* Version: 1.4.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.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/' );
Expand Down
10 changes: 9 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.3.2
Stable tag: 1.4.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

0 comments on commit e0fa1fd

Please sign in to comment.