Bump versions to 1.14.8a2

This commit is contained in:
Vinicius Brasil
2026-06-18 16:06:42 -07:00
parent bc2c2a858c
commit aa292bbdd5
16 changed files with 19 additions and 19 deletions

View File

@@ -717,8 +717,8 @@ def test_json_create_provider_preselects_default_model(tmp_path, monkeypatch):
pyproject = tomli.loads((tmp_path / "json_crew" / "pyproject.toml").read_text())
dependency = pyproject["project"]["dependencies"][0]
assert dependency == "crewai[tools]==1.14.8a1"
assert Version("1.14.8a1") in Requirement(dependency).specifier
assert dependency == "crewai[tools]==1.14.8a2"
assert Version("1.14.8a2") in Requirement(dependency).specifier
assert pyproject["tool"]["hatch"]["build"]["targets"]["wheel"][
"only-include"
] == ["agents", "crew.jsonc", "tools", "knowledge", "skills"]