Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion block-catalog.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Block Catalog
* Description: Keep track of which Gutenberg Blocks are used across your site.
* Version: 1.6.2
* Requires at least: 6.5
* Requires at least: 6.6
* Requires PHP: 7.4
* Author: 10up
* Author URI: https://10up.com
Expand Down
4 changes: 2 additions & 2 deletions tests/classes/CatalogBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function test_it_can_build_nested_post_block_terms() {
'core/column' => 'Column',
'core/columns' => 'Columns',
'core/list' => 'List',
'core/list-item' => 'List item',
'core/list-item' => 'List Item',
'core/paragraph' => 'Paragraph',
'core/quote' => 'Quote',
];
Expand Down Expand Up @@ -272,7 +272,7 @@ function test_it_can_set_nested_post_block_terms() {
$this->assertContains( 'Column', $actual );
$this->assertContains( 'Columns', $actual );
$this->assertContains( 'List', $actual );
$this->assertContains( 'List item', $actual );
$this->assertContains( 'List Item', $actual );
$this->assertContains( 'Paragraph', $actual );
$this->assertContains( 'Quote', $actual );
$this->assertContains( 'Core', $actual );
Expand Down
2 changes: 1 addition & 1 deletion tests/classes/RESTSupportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function test_it_can_load_all_block_catalog_terms() {
$this->assertContains( 'Column', $actual );
$this->assertContains( 'Columns', $actual );
$this->assertContains( 'List', $actual );
$this->assertContains( 'List item', $actual );
$this->assertContains( 'List Item', $actual );
$this->assertContains( 'Paragraph', $actual );
$this->assertContains( 'Quote', $actual );
$this->assertContains( 'Core', $actual );
Expand Down