chore: bump version to 0.0.14

This PR updates the version to 0.0.14 after publishing to PyPI.

## Changes
- Updated version in `pyproject.toml`
- Updated version in `src/claude_code_sdk/__init__.py`

## Release Information
- Published to PyPI: https://pypi.org/project/claude-code-sdk/0.0.14/
- Install with: `pip install claude-code-sdk==0.0.14`

## Next Steps
After merging this PR, a release tag will be created automatically.

Signed-off-by: Lina <lina@anthropic.com>
This commit is contained in:
Lina Tawfik 2025-07-01 18:31:56 -07:00
parent 4af210ee8f
commit 1c792f155f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "claude-code-sdk" name = "claude-code-sdk"
version = "0.0.13" version = "0.0.14"
description = "Python SDK for Claude Code" description = "Python SDK for Claude Code"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"

View file

@ -26,7 +26,7 @@ from .types import (
UserMessage, UserMessage,
) )
__version__ = "0.0.13" __version__ = "0.0.14"
__all__ = [ __all__ = [
# Main function # Main function