Skip to content

Commit 61eb935

Browse files
feat: bump versions to 1.10.0a1
1 parent 8df499d commit 61eb935

File tree

10 files changed

+9
-32
lines changed

10 files changed

+9
-32
lines changed

lib/crewai-files/src/crewai_files/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@
152152
"wrap_file_source",
153153
]
154154

155-
__version__ = "1.9.3"
155+
__version__ = "1.10.0a1"

lib/crewai-tools/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"pytube~=15.0.0",
1313
"requests~=2.32.5",
1414
"docker~=7.1.0",
15-
"crewai==1.9.3",
15+
"crewai==1.10.0a1",
1616
"lancedb~=0.5.4",
1717
"tiktoken~=0.8.0",
1818
"beautifulsoup4~=4.13.4",

lib/crewai-tools/src/crewai_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,4 @@
291291
"ZapierActionTools",
292292
]
293293

294-
__version__ = "1.9.3"
294+
__version__ = "1.10.0a1"

lib/crewai-tools/tool.specs.json

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -20117,18 +20117,6 @@
2011720117
"humanized_name": "Web Automation Tool",
2011820118
"init_params_schema": {
2011920119
"$defs": {
20120-
"AvailableModel": {
20121-
"enum": [
20122-
"gpt-4o",
20123-
"gpt-4o-mini",
20124-
"claude-3-5-sonnet-latest",
20125-
"claude-3-7-sonnet-latest",
20126-
"computer-use-preview",
20127-
"gemini-2.0-flash"
20128-
],
20129-
"title": "AvailableModel",
20130-
"type": "string"
20131-
},
2013220120
"EnvVar": {
2013320121
"properties": {
2013420122
"default": {
@@ -20206,17 +20194,6 @@
2020620194
"default": null,
2020720195
"title": "Model Api Key"
2020820196
},
20209-
"model_name": {
20210-
"anyOf": [
20211-
{
20212-
"$ref": "#/$defs/AvailableModel"
20213-
},
20214-
{
20215-
"type": "null"
20216-
}
20217-
],
20218-
"default": "claude-3-7-sonnet-latest"
20219-
},
2022020197
"project_id": {
2022120198
"anyOf": [
2022220199
{

lib/crewai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Repository = "https://github.com/crewAIInc/crewAI"
5252

5353
[project.optional-dependencies]
5454
tools = [
55-
"crewai-tools==1.9.3",
55+
"crewai-tools==1.10.0a1",
5656
]
5757
embeddings = [
5858
"tiktoken~=0.8.0"

lib/crewai/src/crewai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def filtered_warn(
4141

4242
_suppress_pydantic_deprecation_warnings()
4343

44-
__version__ = "1.9.3"
44+
__version__ = "1.10.0a1"
4545
_telemetry_submitted = False
4646

4747

lib/crewai/src/crewai/cli/templates/crew/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]==1.9.3"
8+
"crewai[tools]==1.10.0a1"
99
]
1010

1111
[project.scripts]

lib/crewai/src/crewai/cli/templates/flow/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]==1.9.3"
8+
"crewai[tools]==1.10.0a1"
99
]
1010

1111
[project.scripts]

lib/crewai/src/crewai/cli/templates/tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}"
55
readme = "README.md"
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.203.1"
8+
"crewai[tools]==1.10.0a1"
99
]
1010

1111
[tool.crewai]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""CrewAI development tools."""
22

3-
__version__ = "1.9.3"
3+
__version__ = "1.10.0a1"

0 commit comments

Comments
 (0)