Skip to content

Commit 4fc7351

Browse files
authored
Merge pull request #36 from 10up/release/1.5.3
Release/1.5.3
2 parents 61393ac + 1d9d858 commit 4fc7351

5 files changed

+26
-6
lines changed

CHANGELOG.md

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

55
## [Unreleased] - TBD
66

7+
## [1.5.3] - 2023-11-23
8+
9+
### Fixed
10+
11+
- PHP 8.2 deprecation warnings
12+
13+
### Added
14+
15+
PHPUnit 9.x support
16+
17+
### Security
18+
19+
Bumps sharp from 0.32.3 to 0.32.6
20+
721
## [1.5.2] - 2023-11-16
822

923
### Changed

block-catalog.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.5.2
5+
* Version: 1.5.3
66
* Requires at least: 5.7
77
* Requires PHP: 7.4
88
* Author: Darshan Sawardekar, 10up
@@ -16,7 +16,7 @@
1616
*/
1717

1818
// Useful global constants.
19-
define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.5.2' );
19+
define( 'BLOCK_CATALOG_PLUGIN_VERSION', '1.5.3' );
2020
define( 'BLOCK_CATALOG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
2121
define( 'BLOCK_CATALOG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
2222
define( 'BLOCK_CATALOG_PLUGIN_INC', BLOCK_CATALOG_PLUGIN_PATH . 'includes/' );

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.5.2",
4+
"version": "1.5.3",
55
"author": {
66
"name": "Darshan Sawardekar",
77
"email": "[email protected]"

readme.txt

+7-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.4
66
Requires PHP: 7.4
7-
Stable tag: 1.5.2
7+
Stable tag: 1.5.3
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -54,6 +54,12 @@ To address this you need to update your custom block registration. If this is ou
5454

5555
== Changelog ==
5656

57+
= 1.5.3 - 2023-11-23 =
58+
59+
* **Fixed:** PHP 8.2 deprecation warnings
60+
* **Added:** PHPUnit 9.x support
61+
* **Security:** Bumps sharp from 0.32.3 to 0.32.6
62+
5763
= 1.5.2 - 2023-11-16 =
5864

5965
* **Changed:** Bump WordPress "tested up to" version to 6.4 (props [@qasumitbagthariya](https://github.com/qasumitbagthariya), [@jeffpaul](https://github.com/jeffpaul) via [#28](https://github.com/10up/block-catalog/pull/28), [#29](https://github.com/10up/block-catalog/pull/29)).

0 commit comments

Comments
 (0)