Skip to content

Commit 337a6d5

Browse files
committed
preparing new version
1 parent 51eb5e9 commit 337a6d5

File tree

6 files changed

+176
-81
lines changed

6 files changed

+176
-81
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "crewai"
3-
version = "0.114.0"
3+
version = "0.117.0"
44
description = "Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks."
55
readme = "README.md"
66
requires-python = ">=3.10,<3.13"

src/crewai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
category=UserWarning,
1818
module="pydantic.main",
1919
)
20-
__version__ = "0.114.0"
20+
__version__ = "0.117.0"
2121
__all__ = [
2222
"Agent",
2323
"Crew",

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.13"
77
dependencies = [
8-
"crewai[tools]>=0.114.0,<1.0.0"
8+
"crewai[tools]>=0.117.0,<1.0.0"
99
]
1010

1111
[project.scripts]

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.13"
77
dependencies = [
8-
"crewai[tools]>=0.114.0,<1.0.0",
8+
"crewai[tools]>=0.117.0,<1.0.0",
99
]
1010

1111
[project.scripts]

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.13"
77
dependencies = [
8-
"crewai[tools]>=0.114.0"
8+
"crewai[tools]>=0.117.0"
99
]
1010

1111
[tool.crewai]

0 commit comments

Comments
 (0)