chore: release v0.14.1#151
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideBumps the ins crate from 0.14.0 to 0.14.1 and records the new release details in the changelog; no code or dependency behavior changes beyond the version metadata and release notes. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
📝 WalkthroughWalkthroughThe crate version is bumped from Changesv0.14.1 Release Bump
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 `@Cargo.toml`:
- Line 3: The version bump in Cargo.toml to 0.14.1 is not reflected in the
PKGBUILD and .SRCINFO files, creating a version mismatch. Update the pkgver
variable in PKGBUILD from 0.14.0 to 0.14.1, update any download URLs or source
references in PKGBUILD to point to the v0.14.1 tag instead of v0.14.0, and
ensure all corresponding entries in .SRCINFO are updated to match the new
version number and checksums for consistency across the project.
🪄 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: defaults
Review profile: CHILL
Plan: Pro
Run ID: 230fb4c9-5b98-4054-a747-1520a413c3fa
⛔ Files ignored due to path filters (1)
Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
CHANGELOG.mdCargo.toml
| [package] | ||
| name = "ins" | ||
| version = "0.14.0" | ||
| version = "0.14.1" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
rg -n '0\.14\.0|v0\.14\.0|ins-0\.14\.0' pkgbuild/ins Cargo.toml CHANGELOG.mdRepository: instantOS/instantCLI
Length of output: 319
🏁 Script executed:
#!/bin/bash
# Check what files exist in pkgbuild/ins
ls -la pkgbuild/ins/
# Get the full version-related content from both files
echo "=== PKGBUILD ==="
cat pkgbuild/ins/PKGBUILD
echo ""
echo "=== .SRCINFO ==="
if [ -f "pkgbuild/ins/.SRCINFO" ]; then
cat pkgbuild/ins/.SRCINFO
else
echo "File not found"
fi
# Also verify Cargo.toml current version
echo ""
echo "=== Cargo.toml version line ==="
head -n 5 Cargo.toml | grep -n "version"Repository: instantOS/instantCLI
Length of output: 2744
Update PKGBUILD and .SRCINFO to version 0.14.1.
The Cargo.toml version bump to 0.14.1 is not reflected in pkgbuild/ins/PKGBUILD and pkgbuild/ins/.SRCINFO, which still reference pkgver=0.14.0 and download from v0.14.0 tags. Both files must be updated to maintain release consistency.
🤖 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 `@Cargo.toml` at line 3, The version bump in Cargo.toml to 0.14.1 is not
reflected in the PKGBUILD and .SRCINFO files, creating a version mismatch.
Update the pkgver variable in PKGBUILD from 0.14.0 to 0.14.1, update any
download URLs or source references in PKGBUILD to point to the v0.14.1 tag
instead of v0.14.0, and ensure all corresponding entries in .SRCINFO are updated
to match the new version number and checksums for consistency across the
project.
🤖 New release
ins: 0.14.0 -> 0.14.1Changelog
This PR was generated with release-plz.
Summary by Sourcery
Prepare the 0.14.1 release of the ins crate.
Build:
Documentation:
Summary by CodeRabbit
Bug Fixes
Performance Improvements