From f99f76803cc8361f7659538c965e2b87b42dbe6b Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Wed, 13 Nov 2024 11:14:48 -0500 Subject: [PATCH] This was corrected by running node ./bin/versionPlugin.js --- .changeset/silly-poems-happen.md | 5 +++++ wp-graphql-content-blocks.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/silly-poems-happen.md diff --git a/.changeset/silly-poems-happen.md b/.changeset/silly-poems-happen.md new file mode 100644 index 00000000..bd6c9fe4 --- /dev/null +++ b/.changeset/silly-poems-happen.md @@ -0,0 +1,5 @@ +--- +"@wpengine/wp-graphql-content-blocks": patch +--- + +Correct version definition diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 4a3c312d..20085cad 100644 --- a/wp-graphql-content-blocks.php +++ b/wp-graphql-content-blocks.php @@ -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.2.0' ); + define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.0' ); } } }