-
Notifications
You must be signed in to change notification settings - Fork 0
chore(release): 1.4.0 #81
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ | |
|
|
||
| [package] | ||
| name = "loomweave-plugin-rust-dist" | ||
| version = "1.3.1" | ||
| version = "1.4.0" | ||
| edition = "2024" | ||
| license = "MIT" | ||
| repository = "https://github.com/foundryside-dev/loomweave" | ||
|
|
@@ -31,4 +31,4 @@ name = "loomweave-plugin-rust" | |
| path = "src/main.rs" | ||
|
|
||
| [dependencies] | ||
| loomweave-plugin-rust = { path = "../../crates/loomweave-plugin-rust", version = "1.3.1" } | ||
| loomweave-plugin-rust = { path = "../../crates/loomweave-plugin-rust", version = "1.4.0" } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This release bump updates the standalone Rust plugin dist crate to depend on Useful? React with 👍 / 👎. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| """loomweave-plugin-python — Python language plugin for Loomweave.""" | ||
|
|
||
| __version__ = "1.3.1" | ||
| __version__ = "1.4.0" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
When this 1.4.0 tag runs
publish-crates,.github/workflows/release.ymlpublishes core/scanner/analysis/storage/federation/plugin-rust/mcp/cli but never publishesloomweave-llm, while this bumped dependency is converted into the registry dependency required by the publishedloomweave-mcpandloomweave-clicrates. I checkedcargo publish --help:-p, --packageselects the package(s) to publish, so dependencies are not uploaded implicitly; addpublish loomweave-llmbefore the crates that depend on it or the crates.io release stalls whenloomweave-mcp/loomweave-clineedloomweave-llm = 1.4.0.Useful? React with 👍 / 👎.