Skip to content

Commit 00332f3

Browse files
github-actions[bot]claudeashwin-ant
authored
chore: release v0.1.12 (#392)
This PR updates the version to 0.1.12 after publishing to PyPI. ## Changes - Updated version in `pyproject.toml` to 0.1.12 - Updated version in `src/claude_agent_sdk/_version.py` to 0.1.12 - Updated `CHANGELOG.md` with release notes ## Release Information - Published to PyPI: https://pypi.org/project/claude-agent-sdk/0.1.12/ - Bundled CLI version: 2.0.58 - Install with: `pip install claude-agent-sdk==0.1.12` 🤖 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: Claude <[email protected]> Co-authored-by: Ashwin Bhat <[email protected]>
1 parent ea0ef25 commit 00332f3

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

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

3+
## 0.1.12
4+
5+
### New Features
6+
7+
- **Tools option**: Added `tools` option to `ClaudeAgentOptions` for controlling the base set of available tools, matching the TypeScript SDK functionality. Supports three modes:
8+
- Array of tool names to specify which tools should be available (e.g., `["Read", "Edit", "Bash"]`)
9+
- Empty array `[]` to disable all built-in tools
10+
- Preset object `{"type": "preset", "preset": "claude_code"}` to use the default Claude Code toolset
11+
- **SDK beta support**: Added `betas` option to `ClaudeAgentOptions` for enabling Anthropic API beta features. Currently supports `"context-1m-2025-08-07"` for extended context window
12+
313
## 0.1.11
414

515
### Internal/Other Changes

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.11"
7+
version = "0.1.12"
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.11"
3+
__version__ = "0.1.12"

0 commit comments

Comments
 (0)