Skip to content
Open
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion python/copilot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)
from .tools import convert_mcp_call_tool_result, define_tool

__version__ = "0.1.0"
__version__ = "0.3.0"
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

__version__ is now 0.3.0, but the package metadata version in python/pyproject.toml is still 0.1.0. This will leave the built/distributed wheel reporting 0.1.0 (and can also reintroduce drift later). Consider updating the project.version to 0.3.0 as part of this change, or deriving __version__ from importlib.metadata.version("github-copilot-sdk") so there’s a single source of truth.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure


__all__ = [
"CommandContext",
Expand Down
Loading