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
This commit is contained in:
Lorenze Jay
2025-09-28 08:53:35 -07:00
committed by GitHub
parent 548170e989
commit 0fe9352149
4 changed files with 6 additions and 5 deletions

View File

@@ -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"

View File

@@ -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