diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..816df2d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4337f14..90589a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.1](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.3.0...stackone-ai-v0.3.1) (2025-08-19) + + +### Documentation + +* add comprehensive LangChain integration section to README ([#20](https://github.com/StackOneHQ/stackone-ai-python/issues/20)) ([cbf7f68](https://github.com/StackOneHQ/stackone-ai-python/commit/cbf7f68e889839f9a501ad8f2cd47c468ffff47e)) +* rename meta tools ([#27](https://github.com/StackOneHQ/stackone-ai-python/issues/27)) ([a9ebc03](https://github.com/StackOneHQ/stackone-ai-python/commit/a9ebc032f784863913b28d4ad3850b80bafee5f4)) + ## [0.3.0](https://github.com/StackOneHQ/stackone-ai-python/compare/stackone-ai-v0.0.4...stackone-ai-v0.3.0) (2025-08-19) diff --git a/pyproject.toml b/pyproject.toml index e1ff983..7fafccd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackone-ai" -version = "0.3.0" +version = "0.3.1" 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 85ae1cd..d52ddcd 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.3.0" +__version__ = "0.3.1"