Skip to content

Commit 19c071b

Browse files
author
Bruce Hauman
committed
chore: bump version to v0.1.11-alpha
1 parent dec1e6b commit 19c071b

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## [Unreleased]
44

5+
## [0.1.11-alpha] - 2025-10-04
6+
7+
Changes to Claude Desktop and Claude Code have caused me to re-evalute
8+
how I use the error flag in the ClojureMCP tool responses.
9+
10+
This change should make the tool results still legible/expandable when
11+
there is a poorly executed tool call as opposed to a tool malfunction.
12+
13+
ClojureMCP tools has been mistakenly using the MCP tool result error
14+
flag to signal errors that result from normal tool operation. Now only
15+
runtime Exceptions will cause the MCP tool response to contain an
16+
error flag of true.
17+
18+
### Fixed
19+
- Prevent validation errors from sending MCP tool result error flag - validation/processing errors now appear in results without signaling protocol-level errors
20+
- Fix truncation message showing file size in bytes instead of line count (#107)
21+
522
## [0.1.10-alpha] - 2025-09-19
623

724
### Simplified nREPL Auto-Start 🚀

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ Add `clojure-mcp` as an alias in your `~/.clojure/deps.edn`:
259259
{:mcp
260260
{:deps {org.slf4j/slf4j-nop {:mvn/version "2.0.16"} ;; Required for stdio server
261261
com.bhauman/clojure-mcp {:git/url "https://github.com/bhauman/clojure-mcp.git"
262-
:git/tag "v0.1.10-alpha"
263-
:git/sha "8bd96c3"}}
262+
:git/tag "v0.1.11-alpha"
263+
:git/sha "7739dba"}}
264264
:exec-fn clojure-mcp.main/start-mcp-server
265265
:exec-args {:port 7888}}}}
266266
```
@@ -681,8 +681,8 @@ being sure to set the port (your nrepl port), shadow port, and shadow build as n
681681
{:mcp-shadow-dual
682682
{:deps {org.slf4j/slf4j-nop {:mvn/version "2.0.16"} ;; Required for stdio server
683683
com.bhauman/clojure-mcp {:git/url "https://github.com/bhauman/clojure-mcp.git"
684-
:git/tag "v0.1.10-alpha"
685-
:git/sha "8bd96c3"}}
684+
:git/tag "v0.1.11-alpha"
685+
:git/sha "7739dba"}}
686686
:exec-fn clojure-mcp.main-examples.shadow-main/start-mcp-server
687687
:exec-args {:port 7888 :shadow-port 7889 :shadow-build "app"}}}}
688688
```
@@ -1091,8 +1091,8 @@ In order to generate the code index, you will need to set up an alias for this p
10911091
{:index
10921092
{:deps {org.slf4j/slf4j-nop {:mvn/version "2.0.16"} ;; Required for stdio server
10931093
com.bhauman/clojure-mcp {:git/url "https://github.com/bhauman/clojure-mcp.git"
1094-
:git/tag "v0.1.10-alpha"
1095-
:git/sha "8bd96c3"}}
1094+
:git/tag "v0.1.11-alpha"
1095+
:git/sha "7739dba"}}
10961096
:exec-fn clojure-mcp.code-indexer/map-project
10971097
:exec-args {}}}}
10981098
```

0 commit comments

Comments
 (0)