Skip to content

Commit 79b1738

Browse files
committed
feat: version update
1 parent 12a4883 commit 79b1738

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/publish-docker-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build & push Docker image
1313
with:
1414
image: antonytm/mcp-sitecore-linux
15-
tags: 1.2.1, latest
15+
tags: 1.2.2-verbose-logging, latest
1616
registry: docker.io
1717
dockerfile: ./docker/linux/Dockerfile
1818
username: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/publish-docker-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build & push Docker image
1313
with:
1414
image: antonytm/mcp-sitecore-windows
15-
tags: 1.2.1, latest
15+
tags: 1.2.2-verbose-logging, latest
1616
registry: docker.io
1717
dockerfile: ./docker/windows/Dockerfile
1818
platform: windows/amd64

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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antonytm/mcp-sitecore-server",
3-
"version": "1.2.1",
3+
"version": "1.2.2-verbose-logging",
44
"description": "A Model Context Protocol server for Sitecore",
55
"files": [
66
"dist",
@@ -24,13 +24,13 @@
2424
"start:stdio": "npm run build && cross-env TRANSPORT=stdio node dist/index.js",
2525
"run": "npm run build && node dist/run.js",
2626
"test": "npm run build && npm run bundle && vitest run",
27-
"docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:1.2.1 -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
27+
"docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:1.2.2-verbose-logging -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
2828
"docker:windows:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-windows:latest",
29-
"docker:windows:push": "docker push antonytm/mcp-sitecore-windows:1.2.1 && docker push antonytm/mcp-sitecore-windows:latest",
29+
"docker:windows:push": "docker push antonytm/mcp-sitecore-windows:1.2.2-verbose-logging && docker push antonytm/mcp-sitecore-windows:latest",
3030
"docker:windows": "npm run docker:windows:build && npm run docker:windows:push",
31-
"docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:1.2.1 -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
31+
"docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:1.2.2-verbose-logging -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
3232
"docker:linux:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-linux:latest",
33-
"docker:linux:push": "docker push antonytm/mcp-sitecore-linux:1.2.1 && docker push antonytm/mcp-sitecore-linux:latest",
33+
"docker:linux:push": "docker push antonytm/mcp-sitecore-linux:1.2.2-verbose-logging && docker push antonytm/mcp-sitecore-linux:latest",
3434
"docker:linux": "npm run docker:linux:build && npm run docker:linux:push"
3535
},
3636
"dependencies": {

tests/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const transportOptions: TransportOptions = {
1616

1717
const client = new Client({
1818
name: "mcp-sitecore-server",
19-
version: "1.2.1",
19+
version: "1.2.2-verbose-logging",
2020
});
2121

2222
const transport = createTransport(transportOptions);

0 commit comments

Comments
 (0)