Skip to content

Commit 53df419

Browse files
authored
feat: bump versions to 1.10.1 (#4706)
1 parent ea70976 commit 53df419

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

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.10.1a1"
155+
__version__ = "1.10.1"

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.10.1a1",
14+
"crewai==1.10.1",
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.10.1a1"
294+
__version__ = "1.10.1"

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.10.1a1",
56+
"crewai-tools==1.10.1",
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
@@ -40,7 +40,7 @@ def filtered_warn(
4040

4141
_suppress_pydantic_deprecation_warnings()
4242

43-
__version__ = "1.10.1a1"
43+
__version__ = "1.10.1"
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 = "[email protected]" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]==1.10.1a1"
8+
"crewai[tools]==1.10.1"
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 = "[email protected]" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]==1.10.1a1"
8+
"crewai[tools]==1.10.1"
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]==1.10.1a1"
8+
"crewai[tools]==1.10.1"
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.10.1a1"
3+
__version__ = "1.10.1"

0 commit comments

Comments
 (0)