diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 63c033c..0ee8c01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.4" + ".": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d80b983..4337f14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.3.0](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.0.4...stackone-ai-v0.3.0) (2025-08-19) + + +### Features + +* add CLAUDE.md for Claude Code guidance ([#15](https://github.com/StackOneHQ/stackone-ai-python/issues/15)) ([ac9fe98](https://github.com/StackOneHQ/stackone-ai-python/commit/ac9fe9857f44c19394654dfcbe23fecc5cf9fbb0)) +* bring Python SDK to feature parity with Node SDK ([#17](https://github.com/StackOneHQ/stackone-ai-python/issues/17)) ([8b6de99](https://github.com/StackOneHQ/stackone-ai-python/commit/8b6de99184227cb7f1580964dc3eae14f8f60fc1)) +* remove automatic STACKONE_ACCOUNT_ID environment variable loading ([#23](https://github.com/StackOneHQ/stackone-ai-python/issues/23)) ([aa0aaf6](https://github.com/StackOneHQ/stackone-ai-python/commit/aa0aaf6d6bf528f8e29def9b008db23cf94b97c7)) +* simplify meta tool function names to match Node SDK ([#19](https://github.com/StackOneHQ/stackone-ai-python/issues/19)) ([4572609](https://github.com/StackOneHQ/stackone-ai-python/commit/4572609a9b85a88fc3067be12f821ec0bc54e769)) + + +### Miscellaneous Chores + +* release 0.3.0 ([#24](https://github.com/StackOneHQ/stackone-ai-python/issues/24)) ([beea911](https://github.com/StackOneHQ/stackone-ai-python/commit/beea91165ed2ba3eb5f5ad6ca8656344561b0b43)) + ## [0.0.4](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.0.3...stackone-ai-v0.0.4) (2025-03-05) diff --git a/pyproject.toml b/pyproject.toml index 31b5d14..e1ff983 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackone-ai" -version = "0.0.4" +version = "0.3.0" description = "agents performing actions on your SaaS" readme = "README.md" requires-python = ">=3.11" diff --git a/stackone_ai/__init__.py b/stackone_ai/__init__.py index bc0cff1..85ae1cd 100644 --- a/stackone_ai/__init__.py +++ b/stackone_ai/__init__.py @@ -4,4 +4,4 @@ from .toolset import StackOneToolSet __all__ = ["StackOneToolSet", "StackOneTool", "Tools"] -__version__ = "0.0.4" +__version__ = "0.3.0"