From 0fe93521498e15051f21df0184255750c220d238 Mon Sep 17 00:00:00 2001 From: Lorenze Jay <63378463+lorenzejay@users.noreply.github.com> Date: Sun, 28 Sep 2025 08:53:35 -0700 Subject: [PATCH] chore: bump version to 1.0.0a1 across all packages - Updated version to 1.0.0a1 in pyproject.toml for crewai and crewai-tools - Adjusted version in __init__.py files for consistency --- lib/crewai-tools/pyproject.toml | 2 +- lib/crewai-tools/src/crewai_tools/__init__.py | 3 ++- lib/crewai/pyproject.toml | 2 +- lib/crewai/src/crewai/__init__.py | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/crewai-tools/pyproject.toml b/lib/crewai-tools/pyproject.toml index d5edc894c..6fc8bba03 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.0", "docker>=7.1.0", - "crewai==1.0.0a0", + "crewai==1.0.0a1", "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 334dbc050..1655a9240 100644 --- a/lib/crewai-tools/src/crewai_tools/__init__.py +++ b/lib/crewai-tools/src/crewai_tools/__init__.py @@ -1,3 +1,4 @@ +# ruff: noqa: F401 from .adapters.enterprise_adapter import EnterpriseActionTool from .adapters.mcp_adapter import MCPServerAdapter from .adapters.zapier_adapter import ZapierActionTool @@ -98,4 +99,4 @@ from .tools import ( ) -__version__ = "1.0.0a0" +__version__ = "1.0.0a1" diff --git a/lib/crewai/pyproject.toml b/lib/crewai/pyproject.toml index aeeb5d7a9..f67014d5d 100644 --- a/lib/crewai/pyproject.toml +++ b/lib/crewai/pyproject.toml @@ -50,7 +50,7 @@ Repository = "https://github.com/crewAIInc/crewAI" [project.optional-dependencies] tools = [ - "crewai-tools==1.0.0a0", + "crewai-tools==1.0.0a1", ] embeddings = [ "tiktoken~=0.8.0" diff --git a/lib/crewai/src/crewai/__init__.py b/lib/crewai/src/crewai/__init__.py index ae5377bbf..efa4e0644 100644 --- a/lib/crewai/src/crewai/__init__.py +++ b/lib/crewai/src/crewai/__init__.py @@ -1,7 +1,7 @@ import threading +from typing import Any import urllib.request import warnings -from typing import Any from crewai.agent import Agent from crewai.crew import Crew @@ -40,7 +40,7 @@ def _suppress_pydantic_deprecation_warnings() -> None: _suppress_pydantic_deprecation_warnings() -__version__ = "1.0.0a0" +__version__ = "1.0.0a1" _telemetry_submitted = False