Skip to content

Commit cf6b85f

Browse files
github-actions[bot]ashwin-antclaude
authored
chore: release v0.1.13 (#393)
This PR updates the version to 0.1.13 after publishing to PyPI. ## Changes - Updated version in `pyproject.toml` to 0.1.13 - Updated version in `src/claude_agent_sdk/_version.py` to 0.1.13 - Updated `CHANGELOG.md` with release notes ## Release Information - Published to PyPI: https://pypi.org/project/claude-agent-sdk/0.1.13/ - Bundled CLI version: 2.0.59 - Install with: `pip install claude-agent-sdk==0.1.13` 🤖 Generated by GitHub Actions --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Ashwin Bhat <[email protected]> Co-authored-by: Claude <[email protected]>
1 parent 00b5730 commit cf6b85f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.1.13
4+
5+
### Bug Fixes
6+
7+
- **Faster error handling**: CLI errors (e.g., invalid session ID) now propagate to pending requests immediately instead of waiting for the 60-second timeout (#388)
8+
- **Pydantic 2.12+ compatibility**: Fixed `PydanticUserError` caused by `McpServer` type only being imported under `TYPE_CHECKING` (#385)
9+
- **Concurrent subagent writes**: Added write lock to prevent `BusyResourceError` when multiple subagents invoke MCP tools in parallel (#391)
10+
11+
### Internal/Other Changes
12+
13+
- Updated bundled Claude CLI to version 2.0.59
14+
315
## 0.1.12
416

517
### New Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "claude-agent-sdk"
7-
version = "0.1.12"
7+
version = "0.1.13"
88
description = "Python SDK for Claude Code"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/claude_agent_sdk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information for claude-agent-sdk."""
22

3-
__version__ = "0.1.12"
3+
__version__ = "0.1.13"

0 commit comments

Comments
 (0)