Skip to content

Commit 96f9af1

Browse files
Merge pull request #27 from chriscarrollsmith/26-increase-conciseness-of-the-codebase-by-replacing-switch-statement-with-toolexecutors
Task Manager Refactoring: Command Pattern Implementation
2 parents 0402d0b + db77850 commit 96f9af1

File tree

7 files changed

+1116
-261
lines changed

7 files changed

+1116
-261
lines changed

.github/workflows/npm-publish.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,11 @@ jobs:
6363

6464
- name: Create GitHub Release
6565
if: steps.publish.outputs.type != 'none'
66-
uses: actions/create-release@v1
67-
env:
68-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66+
uses: ncipollo/release-action@v1
6967
with:
70-
tag_name: v${{ steps.package_version.outputs.version }}
71-
release_name: Release v${{ steps.package_version.outputs.version }}
68+
token: ${{ secrets.GITHUB_TOKEN }}
69+
tag: v${{ steps.package_version.outputs.version }}
70+
name: Release v${{ steps.package_version.outputs.version }}
7271
body: |
7372
${{ steps.pr_message.outputs.message }}
7473

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema } from "@modelcontextprot
1010
const server = new Server(
1111
{
1212
name: "task-manager-server",
13-
version: "1.1.0"
13+
version: "1.1.1"
1414
},
1515
{
1616
capabilities: {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taskqueue-mcp",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Task Queue MCP Server",
55
"author": "Christopher C. Smith ([email protected])",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)