Skip to content

Commit

Permalink
Bumps version to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawardekar committed Nov 25, 2022
1 parent 4e934d9 commit c2e753e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file, per [the Ke

- todo

## [1.2.2] - 2022-11-25

- Updates Documentation

## [1.2.1] - 2022-11-25

- Improves block title detection when default title is missing.
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.1",
"version": "1.2.2",
"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.2.1
* Version: 1.2.2
* 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.1' );
define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.2.2' );
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
6 changes: 5 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.1
Stable tag: 1.2.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -69,6 +69,10 @@ add_filter( 'block_catalog_block_title', function( $title, $block_name, $block )

== Changelog ==

= 1.2.2 - 2022-11-25 =

- Updates Documentation

= 1.2.1 - 2022-11-25 =

- Improves block title detection when default title is missing.
Expand Down

0 comments on commit c2e753e

Please sign in to comment.