bump to 0.2.12#166
Conversation
|
Important Review skippedAuto reviews are limited based on label configuration. 🏷️ Required labels (at least one) (1)
Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ 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 |
Greptile SummaryThis PR bumps Brain3 from 0.2.11 to 0.2.12 across release-facing files.
Confidence Score: 5/5This looks safe to merge after checking the release artifacts are published in step with the version bump. The version strings are internally consistent across the changed files. README.MD and crates/core/src/application/first_run_setup.rs need release-order attention for the installer URL and default container image tag.
What T-Rex did
Important Files Changed
Reviews (1): Last reviewed commit: "bump to 0.2.12" | Re-trigger Greptile |
|
|
||
| ```bash | ||
| curl -sSfL https://brain3.s3.amazonaws.com/releases/v0.2.11/install.sh | sh | ||
| curl -sSfL https://brain3.s3.amazonaws.com/releases/v0.2.12/install.sh | sh |
There was a problem hiding this comment.
Versioned Installer Can Lead Release
When this README lands on main before the matching release artifacts are published, the documented install command points new users at the v0.2.12 S3 path immediately. If that path is not available yet, the primary install command fails with an HTTP error instead of installing Brain3.
| use crate::ports::setup_system::SetupSystemPort; | ||
|
|
||
| pub const CURRENT_RELEASE: &str = "v0.2.11"; | ||
| pub const CURRENT_RELEASE: &str = "v0.2.12"; |
There was a problem hiding this comment.
Default Container Tag Can Lead Image
CURRENT_RELEASE feeds the default MCP container image tag used during first-run setup. If the binary release is published before ghcr.io/tleyden/brain3-mcp-vault-tools:v0.2.12 is available, a fresh install that leaves the container image tag empty will try to pull that tag and fail setup with a missing manifest or pull error.
No description provided.