Skip to content

Commit e0fa1fd

Browse files
committed
Bumps version to 1.4.0
1 parent 9eb0be5 commit e0fa1fd

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file, per [the Ke
66

77
- todo
88

9+
## [1.4.0] - 2022-12-03
10+
11+
- Improves Core Block Display Titles logic
12+
- Fixes parent term for blocks registered without namespace
13+
- Improve Reusable Block detection
14+
- Add hooks to support nested variations
15+
- Adds unit tests
16+
917
## [1.3.2] - 2022-11-25
1018

1119
- Updates readme.txt

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "block-catalog-plugin",
33
"description": "Easily keep track of which Gutenberg Blocks are used across your site.",
4-
"version": "1.3.2",
4+
"version": "1.4.0",
55
"author": {
66
"name": "Darshan Sawardekar",
77
"email": "[email protected]"

plugin.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Block Catalog
44
* Description: Easily keep track of which Gutenberg Blocks are used across your site.
5-
* Version: 1.3.2
5+
* Version: 1.4.0
66
* Requires at least: 5.7
77
* Requires PHP: 7.4
88
* Author: Darshan Sawardekar, 10up
@@ -17,7 +17,7 @@
1717

1818

1919
// Useful global constants.
20-
define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.3.2' );
20+
define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.4.0' );
2121
define( 'BLOCK_CATALOG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
2222
define( 'BLOCK_CATALOG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
2323
define( 'BLOCK_CATALOG_PLUGIN_INC', BLOCK_CATALOG_PLUGIN_PATH . 'includes/' );

readme.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, developer, blocks, custom blocks
44
Requires at least: 5.7
55
Tested up to: 6.1
66
Requires PHP: 7.4
7-
Stable tag: 1.3.2
7+
Stable tag: 1.4.0
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -62,6 +62,14 @@ To address this you need to update your custom block registration. If this is ou
6262

6363
- Minor docs updates
6464

65+
= 1.4.0 - 2022-12-03 =
66+
67+
- Improves Core Block Display Titles logic
68+
- Fixes parent term for blocks registered without namespace
69+
- Improve Reusable Block detection
70+
- Add hooks to support nested variations
71+
- Adds unit tests
72+
6573
= 1.3.0 - 2022-11-25 =
6674

6775
- Adds support for hierarchical classification

0 commit comments

Comments
 (0)