Skip to content

feat: bump versions to 1.15.7 - #6672

Merged
joaomdmoura merged 1 commit into
mainfrom
feat/bump-version-1.15.7
Jul 26, 2026
Merged

feat: bump versions to 1.15.7#6672
joaomdmoura merged 1 commit into
mainfrom
feat/bump-version-1.15.7

Conversation

@joaomdmoura

@joaomdmoura joaomdmoura commented Jul 26, 2026

Copy link
Copy Markdown
Collaborator

Note

Low Risk
Version and dependency pin updates only; no application logic, security, or data-handling changes.

Overview
Promotes 1.15.7a1 to the stable 1.15.7 release across the monorepo by updating __version__ in crewai, crewai-core, crewai-cli, crewai-tools, crewai-files, and crewai-devtools, and aligning pinned internal dependencies in pyproject.toml (e.g. crewai-core, crewai-cli, crewai, crewai-tools).

There are no runtime or API code changes in this diff—only version strings and dependency pins for a coordinated publish.

Reviewed by Cursor Bugbot for commit 4f9c5a1. Bugbot is set up for automated code reviews on this repo. Configure here.

Copilot AI review requested due to automatic review settings July 26, 2026 18:04
@joaomdmoura
joaomdmoura enabled auto-merge (squash) July 26, 2026 18:04
@coderabbitai

coderabbitai Bot commented Jul 26, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: a7e08f79-34d0-46bd-a556-a84f523a3915

📥 Commits

Reviewing files that changed from the base of the PR and between 213d948 and 4f9c5a1.

📒 Files selected for processing (9)
  • lib/cli/pyproject.toml
  • lib/cli/src/crewai_cli/__init__.py
  • lib/crewai-core/src/crewai_core/__init__.py
  • lib/crewai-files/src/crewai_files/__init__.py
  • lib/crewai-tools/pyproject.toml
  • lib/crewai-tools/src/crewai_tools/__init__.py
  • lib/crewai/pyproject.toml
  • lib/crewai/src/crewai/__init__.py
  • lib/devtools/src/crewai_devtools/__init__.py

📝 Walkthrough

Walkthrough

The release identifier is updated from 1.15.7a1 to 1.15.7 across internal dependency pins and package-level __version__ constants.

Changes

Release alignment

Layer / File(s) Summary
Dependency pin updates
lib/cli/pyproject.toml, lib/crewai-tools/pyproject.toml, lib/crewai/pyproject.toml
Internal crewai, crewai-core, crewai-cli, and crewai-tools pins now target 1.15.7.
Package version updates
lib/cli/src/crewai_cli/__init__.py, lib/crewai-core/src/crewai_core/__init__.py, lib/crewai-files/src/crewai_files/__init__.py, lib/crewai-tools/src/crewai_tools/__init__.py, lib/crewai/src/crewai/__init__.py, lib/devtools/src/crewai_devtools/__init__.py
Package-level __version__ constants now report 1.15.7.

Suggested reviewers: copilot, greysonlalonde, gabemilani

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: bumping versions to 1.15.7.
Description check ✅ Passed The description accurately matches the version and dependency pin updates in the diff.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/bump-version-1.15.7

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@alex-clawd alex-clawd left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved.

Verified it's genuinely only a version promotion — every changed line is 1.15.7a11.15.7, nothing else in the diff.

All six packages moved together, and no stragglers left on the branch:

crewai · crewai-core · crewai-cli · crewai-tools · crewai-files · crewai-devtools
git grep '1.15.7a1' -> no matches

That last check is the one worth doing on a coordinated bump — a missed pin would publish a stable package depending on an alpha.

Also confirmed both of this morning's fixes are actually on the release branch rather than merged after the cut:

  • #6658 skills auth — resolve_plus_client present in agent_utils.py
  • #6660 GPT-5.6 tools + reasoning_effort — _rejects_reasoning_effort_with_tools present in completion.py

So 1.15.7 carries the deployment skills-download fix and unblocks tool calling on the GPT-5.6 family.

8 pass / 14 pending / 1 skipping, no failures.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Promotes the monorepo packages from the prerelease 1.15.7a1 to the stable 1.15.7 by updating package __version__ values and aligning internal dependency pins in relevant pyproject.toml files.

Changes:

  • Update __version__ from 1.15.7a11.15.7 across the affected Python packages.
  • Update internal dependency pins to ==1.15.7 (e.g., crewai-core, crewai-cli, crewai-tools, crewai).
  • Keep runtime logic unchanged; version/pin-only edits.

Reviewed changes

Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
lib/devtools/src/crewai_devtools/init.py Bump devtools package version to 1.15.7.
lib/crewai/src/crewai/init.py Bump core crewai package version to 1.15.7.
lib/crewai/pyproject.toml Pin internal dependencies (crewai-core, crewai-cli, crewai-tools) to 1.15.7.
lib/crewai-tools/src/crewai_tools/init.py Bump crewai-tools package version to 1.15.7.
lib/crewai-tools/pyproject.toml Pin crewai dependency to 1.15.7.
lib/crewai-files/src/crewai_files/init.py Bump crewai-files package version to 1.15.7.
lib/crewai-core/src/crewai_core/init.py Bump crewai-core package version to 1.15.7.
lib/cli/src/crewai_cli/init.py Bump crewai-cli package version to 1.15.7.
lib/cli/pyproject.toml Pin crewai-core dependency to 1.15.7.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread lib/crewai/src/crewai/__init__.py
@joaomdmoura
joaomdmoura merged commit 38ca5ed into main Jul 26, 2026
57 checks passed
@joaomdmoura
joaomdmoura deleted the feat/bump-version-1.15.7 branch July 26, 2026 18:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants