Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [Unreleased]

## [0.7.0] — 2026-07-18
## [0.7.1] — 2026-07-27

### Changed 🔄

- Bumped `com.qtsurfer:sdk` to `0.8.1`, which fixes the execute poll ending early when the API
answers `202` — the status it returns when a job is known but its result is not readable yet.
Nothing in this repo changed: the SDK's `Backtest` abstraction absorbs that distinction, so a
backtest driven through the MCP tools could previously report an empty result for a run that had
actually completed, and now polls until the result is readable.

### Changed 🔄

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.qtsurfer</groupId>
<artifactId>mcp-java</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
<packaging>jar</packaging>
<name>qtsurfer-mcp-java</name>

Expand Down Expand Up @@ -34,7 +34,7 @@
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mcp.version>1.1.2</mcp.version>
<sdk.version>0.8.0</sdk.version>
<sdk.version>0.8.1</sdk.version>
<slf4j.version>2.0.16</slf4j.version>
<logback.version>1.5.11</logback.version>
<junit.version>5.11.4</junit.version>
Expand Down
Loading