-
Notifications
You must be signed in to change notification settings - Fork 753
chore: bump versions ahead of 0.5.1 release #3209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Harrison Saturley-Hall <[email protected]>
WalkthroughBumps versions from 0.5.0 to 0.5.1 across workspace Cargo.toml files, Python packaging manifests, and Helm Chart metadata, including local Rust crate interdependencies and Helm subchart references. No code, logic, or API changes are introduced. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Poem
Pre-merge checks❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
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. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (3)
Cargo.lockis excluded by!**/*.locklib/bindings/python/Cargo.lockis excluded by!**/*.locklib/runtime/examples/Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (8)
Cargo.toml(2 hunks)deploy/cloud/helm/crds/Chart.yaml(1 hunks)deploy/cloud/helm/platform/Chart.yaml(1 hunks)deploy/cloud/helm/platform/components/operator/Chart.yaml(1 hunks)lib/bindings/python/Cargo.toml(1 hunks)lib/bindings/python/pyproject.toml(1 hunks)lib/runtime/examples/Cargo.toml(1 hunks)pyproject.toml(2 hunks)
🔇 Additional comments (6)
lib/runtime/examples/Cargo.toml (1)
13-13: Workspace example version bump is correct.No issues.
lib/bindings/python/Cargo.toml (1)
10-10: Bindings crate version bumped correctly.Matches the workspace patch bump; path deps remain appropriate for this isolated workspace.
deploy/cloud/helm/platform/components/operator/Chart.yaml (1)
30-30: Operator chart version bump validated; no 0.5.0 references remaindeploy/cloud/helm/platform/Chart.yaml (1)
22-22: Approve chart and operator version bump to 0.5.1
Versions align in Chart.yaml (lines 22, 26); runhelm dependency updatebefore packaging.deploy/cloud/helm/crds/Chart.yaml (1)
19-19: Approve version bump
Chart version updated to 0.5.1 with no remaining 0.5.0 references; regenerate Helm index/lock if applicable.lib/bindings/python/pyproject.toml (1)
19-19: Confirm publish order for Python runtime package
Thedynamo-py3crate is now at v0.5.1 (lock file entry updated). Publish v0.5.1 before any dependents to avoid resolver errors.
|
|
||
| [workspace.package] | ||
| version = "0.5.0" | ||
| version = "0.5.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Root workspace and local crate versions aligned to 0.5.1.
Looks consistent. Consider running cargo metadata to verify dependency graph coherence.
Quick checks:
Also applies to: 30-34
🏁 Script executed:
#!/bin/bash
# Confirm version pins
rg -nP 'dynamo-(runtime|llm|tokens|async-openai|parsers).*version\s*=\s*"0\.5\.1"' Cargo.toml
# Ensure no leftover 0.5.0 in Rust manifests
fd Cargo.toml | xargs rg -n '\b0\.5\.0\b' || trueLength of output: 385
Mismatch: tmq dependency still pinned at 0.5.0
• lib/llm/Cargo.toml:81 has tmq = "0.5.0"—bump to "0.5.1" to align with the workspace.
• Re-run cargo metadata to verify the full dependency graph.
🤖 Prompt for AI Agents
In Cargo.toml around line 19, the workspace version was bumped to 0.5.1 but the
lib/llm/Cargo.toml still pins tmq = "0.5.0"; update that dependency to tmq =
"0.5.1" so it matches the workspace, save the file, and re-run cargo metadata to
verify the dependency graph and ensure no version conflicts remain.
Signed-off-by: Harrison Saturley-Hall <[email protected]>
Signed-off-by: Harrison Saturley-Hall <[email protected]>
Signed-off-by: Harrison Saturley-Hall <[email protected]>
Signed-off-by: Harrison Saturley-Hall <[email protected]> Signed-off-by: Kyle H <[email protected]>
Overview:
Bump to version
0.5.1Closes OPS-1215
Summary by CodeRabbit