From a54374fade6302710f6cac307ca733dbd1242ed7 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Thu, 9 Oct 2025 08:07:15 -0700 Subject: [PATCH] Add CHANGELOG entry for version 0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Document the features and improvements released in version 0.1.1, including minimum Claude Code version check, updated PermissionResult types, and simplified model references. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6420932..b31ab68b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,17 @@ For full migration instructions, see our [migration guide](https://docs.claude.c - New guides for [Custom Tools](https://docs.claude.com/en/api/agent-sdk/custom-tools), [Permissions](https://docs.claude.com/en/api/agent-sdk/permissions), [Session Management](https://docs.claude.com/en/api/agent-sdk/sessions), and more - Complete [Python API reference](https://docs.claude.com/en/api/agent-sdk/python) +## 0.1.1 + +### Features + +- **Minimum Claude Code version check**: Added version validation to ensure Claude Code 2.0.0+ is installed. The SDK will display a warning if an older version is detected, helping prevent compatibility issues +- **Updated PermissionResult types**: Aligned permission result types with the latest control protocol for better type safety and compatibility + +### Improvements + +- **Model references**: Updated all examples and tests to use the simplified `claude-sonnet-4-5` model identifier instead of dated version strings + ## 0.0.22 - Introduce custom tools, implemented as in-process MCP servers.