Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Plugin #291

Merged
merged 2 commits into from
Nov 11, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
chore: update versionPlugin.js
  • Loading branch information
theodesp committed Nov 11, 2024
commit b78e57e2fc7e38ee34b954ab3a3b3f8ea0af38a4
2 changes: 1 addition & 1 deletion bin/versionPlugin.js
Original file line number Diff line number Diff line change
@@ -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"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙌🏼

);

const version = await getNewVersion(pluginPath);
2 changes: 1 addition & 1 deletion wp-graphql-content-blocks.php
Original file line number Diff line number Diff line change
@@ -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' );
}
}
}