From 91774ccd348b8756130c147ee4a03fb2e1e87cf4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 28 Jun 2025 01:18:24 +0000 Subject: [PATCH 1/2] chore: bump version to 0.0.13 --- pyproject.toml | 6 +++--- src/claude_code_sdk/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 75a07d25..f2c7a68a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "claude-code-sdk" -version = "0.0.10" +version = "0.0.13" description = "Python SDK for Claude Code" readme = "README.md" requires-python = ">=3.10" @@ -66,7 +66,7 @@ addopts = [ asyncio_mode = "auto" [tool.mypy] -python_version = "3.10" +python_version = "0.0.13" strict = true warn_return_any = true warn_unused_configs = true @@ -82,7 +82,7 @@ warn_unreachable = true strict_equality = true [tool.ruff] -target-version = "py310" +target-version = "0.0.13" line-length = 88 [tool.ruff.lint] diff --git a/src/claude_code_sdk/__init__.py b/src/claude_code_sdk/__init__.py index 4f780f5c..8b7c41ee 100644 --- a/src/claude_code_sdk/__init__.py +++ b/src/claude_code_sdk/__init__.py @@ -26,7 +26,7 @@ UserMessage, ) -__version__ = "0.0.10" +__version__ = "0.0.13" __all__ = [ # Main function From 6b3d69d6f08fa7d766c8e7de4e9f61a66f582273 Mon Sep 17 00:00:00 2001 From: Lina Tawfik Date: Fri, 27 Jun 2025 18:19:46 -0700 Subject: [PATCH 2/2] fix: correct python_version and target-version in tool configs - Set mypy python_version back to 3.10 (was incorrectly set to 0.0.13) - Set ruff target-version back to py310 (was incorrectly set to 0.0.13) These fields should contain Python versions, not package versions. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2c7a68a..a85ad730 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ addopts = [ asyncio_mode = "auto" [tool.mypy] -python_version = "0.0.13" +python_version = "3.10" strict = true warn_return_any = true warn_unused_configs = true @@ -82,7 +82,7 @@ warn_unreachable = true strict_equality = true [tool.ruff] -target-version = "0.0.13" +target-version = "py310" line-length = 88 [tool.ruff.lint]