Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "claude-code-sdk"
version = "0.0.13"
version = "0.0.14"
description = "Python SDK for Claude Code"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -66,7 +66,7 @@ addopts = [
asyncio_mode = "auto"

[tool.mypy]
python_version = "3.10"
python_version = "0.0.14"
strict = true
warn_return_any = true
warn_unused_configs = true
Expand All @@ -82,7 +82,7 @@ warn_unreachable = true
strict_equality = true

[tool.ruff]
target-version = "py310"
target-version = "0.0.14"
line-length = 88

[tool.ruff.lint]
Expand Down
2 changes: 1 addition & 1 deletion src/claude_code_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
UserMessage,
)

__version__ = "0.0.13"
__version__ = "0.0.14"

__all__ = [
# Main function
Expand Down