-
Notifications
You must be signed in to change notification settings - Fork 8
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
chore: release v0.5.3 #144
Conversation
WalkthroughThe pull request introduces version updates in the Changes
Possibly related PRs
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
4e706a0
to
899b693
Compare
Pull request was closed
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: 0
🧹 Outside diff range and nitpick comments (1)
crates/augurs-prophet/CHANGELOG.md (1)
18-18
: Consider adding PR reference for the commented code removal.For consistency with other entries and better traceability, consider adding the PR reference where the commented code was removed.
-Remove commented code +Remove commented code ([#144](https://github.com/grafana/augurs/pull/144))
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (2)
- Cargo.toml (2 hunks)
- crates/augurs-prophet/CHANGELOG.md (1 hunks)
🔇 Additional comments (3)
Cargo.toml (2)
15-15
: LGTM: Version bump to 0.5.3Version update is consistent with the release objectives and follows semantic versioning.
26-35
: LGTM: Consistent dependency version updatesAll workspace dependencies are correctly updated to version 0.5.3, maintaining consistency across the project. The path dependencies are properly configured.
Let's verify version consistency across all crates:
✅ Verification successful
✓ Version consistency verified in workspace dependencies
The workspace dependencies in Cargo.toml are correctly configured:
- All augurs-* crates are set to version 0.5.3, matching the workspace version
- Path dependencies are correctly specified for all workspace members
- augurs-testing is intentionally excluded from versioning as a development dependency
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify version consistency in all crate Cargo.toml files # Expected: All versioned crates should be at 0.5.3 # Check versions in all Cargo.toml files under crates/ fd Cargo.toml crates/ --exec rg -A 1 'version = "\d+\.\d+\.\d+"' {}Length of output: 1055
Script:
#!/bin/bash # Let's try a different approach to check versions in Cargo.toml files # First, check the workspace version echo "=== Workspace Version ===" rg '^version = ' Cargo.toml echo -e "\n=== Individual Crate Versions ===" # Check version field in each crate's Cargo.toml fd Cargo.toml crates/ -x sh -c 'echo "=== {} ==="; rg "^version = " {}' echo -e "\n=== Dependency Versions ===" # Check augurs dependencies in each crate's Cargo.toml fd Cargo.toml crates/ -x sh -c 'echo "=== {} ==="; rg "^augurs-.*version = " {}'Length of output: 1521
Script:
#!/bin/bash # Let's check the workspace members and their version fields in a different way echo "=== Workspace Members ===" rg '^\[workspace\.members\]' -A 20 Cargo.toml echo -e "\n=== Checking Individual Crate Versions ===" # Use cat instead of rg to see the full content of each Cargo.toml for crate in $(fd Cargo.toml crates/); do echo "=== $crate ===" cat "$crate" | rg -A1 '^\[package\]|^version =' doneLength of output: 3488
Script:
#!/bin/bash # Let's try one final approach to check version information echo "=== Workspace Version ===" rg '^version = ' Cargo.toml echo -e "\n=== Workspace Dependencies Section ===" rg '^\[workspace\.dependencies\]' -A 50 Cargo.toml echo -e "\n=== Package Versions ===" # Use grep to look specifically for version field after [package] section for crate in $(fd Cargo.toml crates/); do echo "=== $crate ===" awk '/\[package\]/{p=1;next} /^\[/{p=0} p&&/^version =/' "$crate" doneLength of output: 5237
crates/augurs-prophet/CHANGELOG.md (1)
10-19
: LGTM! Changelog entry follows the Keep a Changelog format.The new version entry is well-structured with proper sections and includes the correct version comparison link.
🤖 New release
augurs
: 0.5.2 -> 0.5.3augurs-changepoint
: 0.5.2 -> 0.5.3augurs-core
: 0.5.2 -> 0.5.3augurs-clustering
: 0.5.2 -> 0.5.3augurs-dtw
: 0.5.2 -> 0.5.3augurs-ets
: 0.5.2 -> 0.5.3augurs-mstl
: 0.5.2 -> 0.5.3augurs-forecaster
: 0.5.2 -> 0.5.3augurs-outlier
: 0.5.2 -> 0.5.3augurs-prophet
: 0.5.2 -> 0.5.3 (✓ API compatible changes)augurs-seasons
: 0.5.2 -> 0.5.3Changelog
augurs
augurs-changepoint
augurs-core
augurs-clustering
augurs-dtw
augurs-ets
augurs-mstl
augurs-forecaster
augurs-outlier
augurs-prophet
augurs-seasons
This PR was generated with release-plz.
Summary by CodeRabbit
New Features
0.5.3
, ensuring all components are aligned.cap_scaled
parameter in theaugurs-prophet
package.Bug Fixes
piecewise_logistic
function in theaugurs-prophet
package.Documentation
0.5.3
.