Skip to content

Commit 8420ed4

Browse files
committed
chore: v2.3.4
1 parent a405a79 commit 8420ed4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

manifest-full.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": "0.2",
3-
"version": "2.3.3",
3+
"version": "2.3.4",
44
"name": "postman-mcp-server-full",
55
"display_name": "Postman MCP Server (Full)",
66
"description": "Connect your AI to your APIs on Postman.",

manifest-minimal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": "0.2",
3-
"version": "2.3.3",
3+
"version": "2.3.4",
44
"name": "postman-mcp-server-minimal",
55
"display_name": "Postman MCP Server (Minimal)",
66
"description": "Connect your AI to your APIs on Postman.",

scripts/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ try {
8383
console.log('📤 Committing and tagging...');
8484
execSync('git add .', { stdio: 'inherit' });
8585
execSync(`git commit -m "chore: v${newVersion}"`, { stdio: 'inherit' });
86-
execSync(`git tag v${newVersion}`, { stdio: 'inherit' });
86+
execSync(`git tag -a v${newVersion} -m "v${newVersion}"`, { stdio: 'inherit' });
8787

8888
console.log(`✅ Released version ${newVersion}`);
8989
console.log(`🚀 Push with: git push origin main --tags`);

0 commit comments

Comments
 (0)