Skip to content

Commit 0636b01

Browse files
committed
release: v1.1.3
1 parent 65c92a0 commit 0636b01

5 files changed

Lines changed: 12 additions & 3 deletions

File tree

.simple-task-master/config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"schema": 1,
3+
"lockTimeoutMs": 30000,
4+
"maxTaskSizeBytes": 1048576
5+
}

CHANGELOG.md

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

88
## [Unreleased]
99

10+
---
11+
12+
## [1.1.3] - 2025-12-21
13+
1014
### Changed
1115

1216
- **MCP Tool Descriptions** - Improved guidance for Claude Code/Desktop integration

frontend/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Box, Text } from "ink";
77
import { useStore } from "../store/index.js";
88
import { t } from "../i18n/index.js";
99

10-
const VERSION = "1.1.2";
10+
const VERSION = "1.1.3";
1111

1212
export function Header() {
1313
const { selectedModels, discussionMethod, availableModels } = useStore();

src/quorum/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Version Information
88
# =============================================================================
99

10-
__version__ = "1.1.2"
10+
__version__ = "1.1.3"
1111
"""Quorum application version."""
1212

1313
PROTOCOL_VERSION = "1.0.0"

src/quorum/mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ async def _run_server() -> None:
373373
write,
374374
InitializationOptions(
375375
server_name="quorum",
376-
server_version="1.1.2",
376+
server_version="1.1.3",
377377
capabilities=server.get_capabilities(
378378
notification_options=NotificationOptions(),
379379
experimental_capabilities={},

0 commit comments

Comments
 (0)