Skip to content

Commit c69c7fc

Browse files
πŸ”„ Auto-sync project version to 9.4.20251007 (#32)
- Updated project version in pom.xml - Updated Dockerfile Maven Central URL - Updated application.properties MCP server version - Updated readme.md version references This automated update keeps all version references in sync with the SHAFT Engine version. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 862d8ba commit c69c7fc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

β€ŽDockerfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM eclipse-temurin:21-jre
22

33
# Download the released JAR from Maven Central
4-
ADD https://repo1.maven.org/maven2/io/github/shafthq/SHAFT_MCP/9.3.20250928/SHAFT_MCP-9.3.20250928.jar /app/SHAFT_MCP.jar
4+
ADD https://repo1.maven.org/maven2/io/github/shafthq/SHAFT_MCP/9.4.20251007/SHAFT_MCP-9.4.20251007.jar /app/SHAFT_MCP.jar
55

66
WORKDIR /app
77

β€Žpom.xmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>io.github.shafthq</groupId>
1212
<artifactId>SHAFT_MCP</artifactId>
13-
<version>9.3.20250928</version> <!-- Update this version in Dockerfile, src/main/resources/application.properties, HELP.md, readme.md on every release -->
13+
<version>9.4.20251007</version> <!-- Update this version in Dockerfile, src/main/resources/application.properties, HELP.md, readme.md on every release -->
1414
<name>SHAFT_MCP</name>
1515
<description>Agentic SHAFT_Engine with Spring AI</description>
1616
<url>https://shafthq.github.io/</url>

β€Žreadme.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ cd /path/to/ShaftHQ/SHAFT_MCP
9191
mvn clean package -DskipTests -Dgpg.skip
9292
```
9393

94-
This will create: `target/SHAFT_MCP-9.3.20250928.jar`
94+
This will create: `target/SHAFT_MCP-9.4.20251007.jar`
9595

9696
### Step 2: Configure Claude Desktop
9797

@@ -111,7 +111,7 @@ This will create: `target/SHAFT_MCP-9.3.20250928.jar`
111111
"command": "java",
112112
"args": [
113113
"-jar",
114-
"/FULL/PATH/TO/SHAFT_MCP/target/SHAFT_MCP-9.3.20250928.jar"
114+
"/FULL/PATH/TO/SHAFT_MCP/target/SHAFT_MCP-9.4.20251007.jar"
115115
]
116116
}
117117
}
@@ -208,7 +208,7 @@ You can add additional MCP servers alongside SHAFT MCP:
208208
"mcpServers": {
209209
"shaft-mcp": {
210210
"command": "java",
211-
"args": ["-jar", "/path/to/SHAFT_MCP-9.3.20250928.jar"]
211+
"args": ["-jar", "/path/to/SHAFT_MCP-9.4.20251007.jar"]
212212
},
213213
"github": {
214214
"command": "npx",

β€Žsrc/main/resources/application.propertiesβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spring.application.name=SHAFT_MCP
22
spring.main.web-application-type=none
33
spring.ai.mcp.server.name=shaft-mcp
4-
spring.ai.mcp.server.version=9.3.20250928
4+
spring.ai.mcp.server.version=9.4.20251007
55

66
# NOTE: You must disable the banner and the console logging
77
# to allow the STDIO transport to work !!!

0 commit comments

Comments
Β (0)