diff --git a/.changeset/silly-poems-happen.md b/.changeset/silly-poems-happen.md deleted file mode 100644 index bd6c9fe4..00000000 --- a/.changeset/silly-poems-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Correct version definition diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d1802ea..9f875118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # WPGraphQL Content Blocks +## 4.3.1 + +### Patch Changes + +- f99f768: Correct version definition + ## 4.3.0 ### Minor Changes diff --git a/package.json b/package.json index 982d0c5e..45233f4f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "4.3.0", + "version": "4.3.1", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index b1438d09..410820e2 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble, Tags: faustjs, faust, headless, decoupled, gutenberg Requires at least: 5.7 Tested up to: 6.6.2 -Stable tag: 4.3.0 +Stable tag: 4.3.1 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,6 +25,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 4.3.1 = + +### Patch Changes + +- f99f768: Correct version definition + = 4.3.0 = ### Minor Changes @@ -69,23 +75,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. - 89b6c60: tests: lint and format PHPUnit tests - 65f0c2d: Update @since @todo tags and @todo placeholders in \_deprecated_function calls -= 4.1.0 = - -### Minor Changes - -- 6241c4e: fix: prevent fatal errors by improving type-safety and returning early when parsing HTML. - The following methods have been deprecated for their stricter-typed counterparts: - - `DOMHelpers::parseAttribute()` => `::parse_attribute()` - - `DOMHelpers::parseFirstNodeAttribute()` => `::parse_first_node_attribute()` - - `DOMHelpers::parseHTML()` => `::parse_html()` - - `DOMHelpers::getElementsFromHTML()` => `::get_elements_from_html()` - - `DOMHelpers::parseText()` => `::parse_text()` - - `DOMHelpers::findNodes()`=> `::find_nodes()` - -### Patch Changes - -- 2b947dc: chore: update Composer dev-dependencies and fix resulting issues. -- 205da8c: ci: replace `docker-compose` commands with `docker compose` -- 5c21ce3: Bug fix. Reusable block isn't resolved inside innerBlocks. - [View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md) \ No newline at end of file diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 20085cad..91ecb255 100644 --- a/wp-graphql-content-blocks.php +++ b/wp-graphql-content-blocks.php @@ -8,7 +8,7 @@ * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: wp-graphql-content-blocks * Domain Path: /languages - * Version: 4.3.0 + * Version: 4.3.1 * Requires PHP: 7.4 * Requires at least: 5.7 * @@ -43,7 +43,7 @@ function wpgraphql_content_blocks_constants(): void { define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_PATH', plugin_basename( WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_FILE ) ); } if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) { - define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.0' ); + define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.1' ); } } }