Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exclude = ["worktrees"]
# true`, so the version the release workflow bumps is written in exactly one
# place and every crate moves together.
[workspace.package]
version = "0.4.0"
version = "0.4.1"
edition = "2024"
rust-version = "1.88"
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion crates/tinytools-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tinytools = { path = "../tinytools", version = "0.4.0" }
tinytools = { path = "../tinytools", version = "0.4.1" }
tracing = { workspace = true, optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/tinytools-jev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
async-trait = { workspace = true }
tinytools = { path = "../tinytools", version = "0.3.0" }
tinytools = { path = "../tinytools", version = "0.4.1" }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Drop the internal dependency version pins

When the workspace next advances to 0.5.0, Cargo interprets this as ^0.4.1 and rejects the local tinytools v0.5.0, recreating the same CI resolution failure this commit repairs. deny.toml:35-44 explicitly documents that unpublished workspace crates should use path-only internal dependencies for this reason; remove version here and from the matching tinytools-agent entry instead of synchronizing both pins.

Useful? React with 👍 / 👎.

tracing = { workspace = true, optional = true }

[dev-dependencies]
Expand Down
Loading