chore(deps): retag LEZ dependency from v0.2.0-rc3 to v0.1.2#228
Merged
Conversation
v0.1.2 and v0.2.0-rc3 resolve to the same commit (cf3639d8), so this is a label-only change with zero code impact. Switching to the published release tag to avoid tracking unofficial rc tags going forward. Also updates the default LEZ tag in `spel init` scaffolding so new projects start from the published release. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR retags Logos Execution Zone (LEZ) git dependencies from v0.2.0-rc3 to the published release tag v0.1.2 (same resolved commit), and updates spel init scaffolding defaults to use the published tag going forward.
Changes:
- Update LEZ dependency tags across multiple Cargo manifests from
v0.2.0-rc3tov0.1.2. - Update
spel initscaffolding defaults tov0.1.2. - Refresh
Cargo.lockgit source metadata to reflect the new tag (same SHA).
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tests/e2e/fixture_program/Cargo.toml | Retags nssa_core dependency to v0.1.2 for the e2e fixture program. |
| test-modules/test_modules_ffi/Cargo.toml | Retags LEZ dependencies used by the FFI test module to v0.1.2. |
| spel-framework/Cargo.toml | Retags nssa_core / nssa dependencies to v0.1.2. |
| spel-framework-core/Cargo.toml | Retags nssa_core / optional nssa dependencies to v0.1.2. |
| spel-ffi-compile-test/Cargo.toml | Retags LEZ dependencies used by the FFI compile test crate to v0.1.2. |
| spel-cli/src/init.rs | Updates the default LEZ tag used in generated scaffolding to v0.1.2. |
| spel-cli/Cargo.toml | Retags LEZ dependencies used by the CLI to v0.1.2. |
| Cargo.lock | Updates LEZ git source URLs to reference tag=v0.1.2 (SHA unchanged). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
97
to
101
| let lez_ref_ffi = match (lez_tag, lez_rev) { | ||
| (Some(t), _) => format!("tag = \"{}\"", t), | ||
| (_, Some(r)) => format!("rev = \"{}\"", r), | ||
| _ => "tag = \"v0.2.0-rc3\"".to_string(), | ||
| _ => "tag = \"v0.1.2\"".to_string(), | ||
| }; |
Address Copilot review: help text default, init example, serialize.rs doc comment, and fixture_program Cargo.lock source URL all still referenced the old tag. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
v0.2.0-rc3andv0.1.2resolve to the same commit (cf3639d8), so this is a label-only change — zero code impact, no API differences, Cargo.lock hashes are identical.Switching to
v0.1.2because:/releases)v0.2.0-rc3was an unofficial git tag only, never published as a releaseAlso updates the default LEZ tag in
spel initscaffolding so newly scaffolded projects start from the published release tag.Files changed
spel-framework/Cargo.tomlspel-framework-core/Cargo.tomlspel-cli/Cargo.tomlspel-ffi-compile-test/Cargo.tomltest-modules/test_modules_ffi/Cargo.tomltests/e2e/fixture_program/Cargo.tomlspel-cli/src/init.rs(scaffold default)Cargo.lock(tag string in metadata only, resolved SHA unchanged)Test plan