Skip to content

Commit 008c1da

Browse files
jerfowleractions-userAgent Communication MCP Serverclaude
authored
chore: release v0.10.0 (#71)
* chore: release v0.10.0 [skip release] - Automated version bump from 0.9.2 to 0.10.0 - Updated CHANGELOG.md with release notes - Version.ts will be auto-generated during build process Closes issues referenced in commits since v0.9.2 🤖 Generated by automated release workflow * fix: regenerate version.ts with correct v0.10.0 The generated version file was outdated showing 0.9.2 instead of 0.10.0. Regenerated from package.json to ensure consistency. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: prevent premature tag creation in release workflow The release workflow was creating tags on the release branch before PR merge. This caused tags to point to incomplete commits missing generated files. Changes: - Remove tag creation from release PR workflow - Tags are now only created by publish workflow after PR merge - Updated PR description to reflect proper tag creation timing This ensures tags always point to complete, merged commits on main branch. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: GitHub Actions <action@github.com> Co-authored-by: Agent Communication MCP Server <noreply@example.com> Co-authored-by: Claude <noreply@anthropic.com>
1 parent a3ed33e commit 008c1da

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -162,22 +162,13 @@ jobs:
162162
- Automated version bump from ${{ steps.version.outputs.current_version }} to ${{ steps.version.outputs.new_version }}
163163
- Updated CHANGELOG.md with release notes
164164
- Version.ts will be auto-generated during build process
165-
165+
166166
Closes issues referenced in commits since v${{ steps.version.outputs.current_version }}
167-
168-
🤖 Generated by automated release workflow"
169-
170-
# Create git tag for the release (will be pushed with the branch)
171-
git tag -a "v${{ steps.version.outputs.new_version }}" -m "Release ${{ steps.version.outputs.new_version }}
172167
173-
- Automated release from version bump PR
174-
- NPM package: @jerfowler/agent-comm-mcp-server@${{ steps.version.outputs.new_version }}
175-
176168
🤖 Generated by automated release workflow"
177-
178-
# Push the branch and tag
169+
170+
# Push the branch (NO TAG - tag will be created after PR merge by publish workflow)
179171
git push origin "$BRANCH_NAME"
180-
git push origin "v${{ steps.version.outputs.new_version }}"
181172
182173
# Create PR using GitHub CLI
183174
gh pr create \
@@ -189,13 +180,12 @@ jobs:
189180
### 📦 Changes Included
190181
- \`package.json\`: Updated version to ${{ steps.version.outputs.new_version }}
191182
- \`CHANGELOG.md\`: Generated changelog entries for new version
192-
- Git tag \`v${{ steps.version.outputs.new_version }}\` created and pushed
193183
- Generated files (\`version.ts\`) will be created during CI build
194184
195185
### 🔄 Next Steps After Merge
196-
1. **NPM Publication**: Automated publish to [@jerfowler/agent-comm-mcp-server](https://www.npmjs.com/package/@jerfowler/agent-comm-mcp-server)
197-
2. **GitHub Release**: Automated release creation with changelog notes
198-
3. **Git Tagging**: Tag already created and pushed
186+
1. **Git Tag Creation**: Tag \`v${{ steps.version.outputs.new_version }}\` will be created on main
187+
2. **NPM Publication**: Automated publish to [@jerfowler/agent-comm-mcp-server](https://www.npmjs.com/package/@jerfowler/agent-comm-mcp-server)
188+
3. **GitHub Release**: Automated release creation with changelog notes
199189
200190
### 📋 Validation Completed
201191
- ✅ Full CI pipeline passed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jerfowler/agent-comm-mcp-server",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"description": "MCP server for AI agent task communication and delegation with diagnostic lifecycle visibility",
55
"type": "module",
66
"main": "./dist/index.js",

src/generated/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Auto-generated file - DO NOT EDIT
33
* Generated from package.json at build time
4-
* Source: @jerfowler/agent-comm-mcp-server@0.9.2
4+
* Source: @jerfowler/agent-comm-mcp-server@0.10.0
55
*/
66

77
export const PACKAGE_INFO = {
88
name: '@jerfowler/agent-comm-mcp-server',
9-
version: '0.9.2',
9+
version: '0.10.0',
1010
description: 'MCP server for AI agent task communication and delegation with diagnostic lifecycle visibility',
1111
author: 'Jeremy Fowler',
1212
repository: {

0 commit comments

Comments
 (0)