diff --git a/bin/versionPlugin.js b/bin/versionPlugin.js index 451d568e..39b2a7ee 100644 --- a/bin/versionPlugin.js +++ b/bin/versionPlugin.js @@ -23,7 +23,7 @@ async function versionPlugin() { const changelog = path.join(pluginPath, "CHANGELOG.md"); const constantsFile = path.join( pluginPath, - "includes/WPGraphQLContentBlocks.php" + "wp-graphql-content-blocks.php" ); const version = await getNewVersion(pluginPath); diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 658b04c3..4a3c312d 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.1.0' ); + define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.2.0' ); } } }