Skip to content

Commit 6b926b9

Browse files
authored
chore: update version to 1.9.0 across all relevant files (#4284)
- Bumped the version number to 1.9.0 in pyproject.toml files and __init__.py files across the CrewAI library and its tools. - Updated dependencies to use the new version of crewai-tools (1.9.0) for improved functionality and compatibility. - Ensured consistency in versioning across the codebase to reflect the latest updates.
1 parent fc84daa commit 6b926b9

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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.8.1"
155+
__version__ = "1.9.0"

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.8.1",
15+
"crewai==1.9.0",
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.8.1"
294+
__version__ = "1.9.0"

lib/crewai/pyproject.toml

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

5050
[project.optional-dependencies]
5151
tools = [
52-
"crewai-tools==1.8.1",
52+
"crewai-tools==1.9.0",
5353
]
5454
embeddings = [
5555
"tiktoken~=0.8.0"

lib/crewai/src/crewai/__init__.py

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

4141
_suppress_pydantic_deprecation_warnings()
4242

43-
__version__ = "1.8.1"
43+
__version__ = "1.9.0"
4444
_telemetry_submitted = False
4545

4646

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.8.1"
8+
"crewai[tools]==1.9.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.8.1"
8+
"crewai[tools]==1.9.0"
99
]
1010

1111
[project.scripts]
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.8.1"
3+
__version__ = "1.9.0"

0 commit comments

Comments
 (0)