Skip to content

Commit edec351

Browse files
committed
Merge branch 'main' into develop
2 parents f4c0f12 + 3771ee4 commit edec351

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0] - 2026-02-02
11+
1012
### Added
1113
- LearningMachine-backed agent learning with culture updates and reasoning tools for synthesis agents
1214
- Event-driven token usage tracking from model request events
@@ -20,6 +22,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2022
- `sequentialthinking` now publishes `outputSchema` and returns `structuredContent` control fields (`should_continue`, `next_thought_number`, `stop_reason`, and parameter guidance)
2123
- Tool description and usage guidance now explicitly require active reflection (`isRevision=true` when correcting prior steps)
2224

25+
### Fixed
26+
- Fixed type error in thinking sequence synthesis in `MultiThinkingSequentialProcessor`
27+
2328
## [0.7.0] - 2025-09-24
2429

2530
### Added
@@ -154,7 +159,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
154159
- MCP server implementation with FastMCP
155160
- Distributed intelligence across specialized agents
156161

157-
[Unreleased]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.7.0...HEAD
162+
[Unreleased]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.8.0...HEAD
163+
[0.8.0]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.7.0...v0.8.0
158164
[0.7.0]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.5.0...v0.7.0
159165
[0.5.0]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.4.1...v0.5.0
160166
[0.4.1]: https://github.com/FradSer/mcp-server-mas-sequential-thinking/compare/v0.4.0...v0.4.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-server-mas-sequential-thinking"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "MCP Agent Implementation for Sequential Thinking"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/mcp_server_mas_sequential_thinking/processors/multi_thinking_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ async def _process_full_direction_sequence(
407407
else:
408408
# No final synthesis - create programmatic synthesis
409409
final_answer = self._synthesize_full_thinking_results(
410-
individual_results, thinking_sequence, thought_data.thought
410+
individual_results, list(thinking_sequence), thought_data.thought
411411
)
412412

413413
return {

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)