Skip to content

Commit d8fea25

Browse files
greysonlalondegithub-actions[bot]lorenzejay
authored
feat: bump versions to 1.10.0
* feat: bump versions to 1.10.0 * chore: update tool specifications --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Lorenze Jay <63378463+lorenzejay@users.noreply.github.com>
1 parent d259150 commit d8fea25

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.0"

lib/crewai-tools/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111
"pytube~=15.0.0",
1212
"requests~=2.32.5",
1313
"docker~=7.1.0",
14-
"crewai==1.9.3",
14+
"crewai==1.10.0",
1515
"tiktoken~=0.8.0",
1616
"beautifulsoup4~=4.13.4",
1717
"python-docx~=1.2.0",

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.0"

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
@@ -53,7 +53,7 @@ Repository = "https://github.com/crewAIInc/crewAI"
5353

5454
[project.optional-dependencies]
5555
tools = [
56-
"crewai-tools==1.9.3",
56+
"crewai-tools==1.10.0",
5757
]
5858
embeddings = [
5959
"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.0"
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.0"
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.0"
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.0"
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.0"

0 commit comments

Comments
 (0)