chore(main): release python 0.7.32#658
Conversation
ba77ba6 to
3c786e0
Compare
3c786e0 to
389985a
Compare
389985a to
a9cf15c
Compare
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
WalkthroughBumps the ChangesPython v0.7.32 Release Bump
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
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.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@python/pyproject.toml`:
- Line 7: The `__version__` constant in `python/scenario/__init__.py` is out of
sync with the package version in `pyproject.toml`. Update the `__version__`
variable from its current value of "0.1.0" to "0.7.32" to match the package
version specified in `pyproject.toml`. This ensures consistency across the
codebase and prevents confusion for any external code or future functionality
that may reference this constant.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 5c00412f-8880-4db5-b09e-e3f8360ef9df
📒 Files selected for processing (3)
.release-please-manifest.jsonpython/CHANGELOG.mdpython/pyproject.toml
| [project] | ||
| name = "langwatch-scenario" | ||
| version = "0.7.31" | ||
| version = "0.7.32" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Find all __version__ declarations in Python files
rg -n '__version__\s*=' --type=pyRepository: langwatch/scenario
Length of output: 116
🏁 Script executed:
# Check all version-related references in Python files
rg -in 'VERSION|version\s*=' --type=py -A 1 | head -100Repository: langwatch/scenario
Length of output: 13571
🏁 Script executed:
# Check if scenario.__version__ is imported or referenced anywhere
rg -n 'from.*scenario.*import.*__version__|scenario\.__version__' --type=pyRepository: langwatch/scenario
Length of output: 44
🏁 Script executed:
# Check pyproject.toml for any version-related configurations
cat python/pyproject.toml | head -50Repository: langwatch/scenario
Length of output: 1926
🏁 Script executed:
# Look for any version synchronization scripts or documentation
find . -type f \( -name "*version*" -o -name "*VERSION*" \) | grep -v __pycache__ | grep -v .gitRepository: langwatch/scenario
Length of output: 8331
Update python/scenario/__init__.py to set __version__ = "0.7.32" to match the package version.
The module's __version__ constant is outdated at "0.1.0" while the package version in pyproject.toml is "0.7.32". Though nothing in the codebase currently checks this constant, updating it maintains consistency and prevents confusion for external code or future functionality that may reference it.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@python/pyproject.toml` at line 7, The `__version__` constant in
`python/scenario/__init__.py` is out of sync with the package version in
`pyproject.toml`. Update the `__version__` variable from its current value of
"0.1.0" to "0.7.32" to match the package version specified in `pyproject.toml`.
This ensures consistency across the codebase and prevents confusion for any
external code or future functionality that may reference this constant.
b7b7937 to
0f6a424
Compare
0f6a424 to
223bd44
Compare
ea458a6 to
828b8bb
Compare
828b8bb to
92a5895
Compare
92a5895 to
fca400d
Compare
fca400d to
f98d6fe
Compare
f98d6fe to
6c3284e
Compare
|
Automated low-risk assessment This PR was evaluated against the repository's Low-Risk Pull Requests procedure.
An approving review has been submitted by automation. The PR may merge once required CI checks pass. |
🤖 I have created a release beep boop
0.7.32 (2026-07-02)
Features
Bug Fixes
This PR was generated with Release Please. See documentation.