From ed54ee2a9d05fdf41c62258097b80bee99db81dd Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Fri, 3 Oct 2025 14:48:48 -0700 Subject: [PATCH] chore: bump version to 1.0.0a3 - Updated `crewai-tools` and `crewai` dependencies to version 1.0.0a3 in respective `pyproject.toml` files. - Incremented version number to 1.0.0a3 in `__init__.py` files for both `crewai` and `crewai-tools` to reflect the new release. --- lib/crewai-tools/pyproject.toml | 2 +- lib/crewai-tools/src/crewai_tools/__init__.py | 2 +- lib/crewai/pyproject.toml | 2 +- lib/crewai/src/crewai/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/crewai-tools/pyproject.toml b/lib/crewai-tools/pyproject.toml index 29a7c1035..b26aba899 100644 --- a/lib/crewai-tools/pyproject.toml +++ b/lib/crewai-tools/pyproject.toml @@ -12,7 +12,7 @@ dependencies = [ "pytube>=15.0.0", "requests>=2.32.5", "docker>=7.1.0", - "crewai==1.0.0a1", + "crewai==1.0.0a3", "lancedb>=0.5.4", "tiktoken>=0.8.0", "stagehand>=0.4.1", diff --git a/lib/crewai-tools/src/crewai_tools/__init__.py b/lib/crewai-tools/src/crewai_tools/__init__.py index 5890310b7..6b093dd5f 100644 --- a/lib/crewai-tools/src/crewai_tools/__init__.py +++ b/lib/crewai-tools/src/crewai_tools/__init__.py @@ -291,4 +291,4 @@ __all__ = [ "ZapierActionTools", ] -__version__ = "1.0.0a2" +__version__ = "1.0.0a3" diff --git a/lib/crewai/pyproject.toml b/lib/crewai/pyproject.toml index 5868a9277..23fca34bc 100644 --- a/lib/crewai/pyproject.toml +++ b/lib/crewai/pyproject.toml @@ -49,7 +49,7 @@ Repository = "https://github.com/crewAIInc/crewAI" [project.optional-dependencies] tools = [ - "crewai-tools==1.0.0a1", + "crewai-tools==1.0.0a3", ] embeddings = [ "tiktoken~=0.8.0" diff --git a/lib/crewai/src/crewai/__init__.py b/lib/crewai/src/crewai/__init__.py index 7b9788e35..4b9d67598 100644 --- a/lib/crewai/src/crewai/__init__.py +++ b/lib/crewai/src/crewai/__init__.py @@ -40,7 +40,7 @@ def _suppress_pydantic_deprecation_warnings() -> None: _suppress_pydantic_deprecation_warnings() -__version__ = "1.0.0a2" +__version__ = "1.0.0a3" _telemetry_submitted = False