cargo-workspaces icon indicating copy to clipboard operation
cargo-workspaces copied to clipboard

Packages with features do not update their version on cargo ws publish or cargo ws version

Open artegoser opened this issue 1 year ago • 1 comments

Packages in cargo.toml with features do not update their versions.

symboscript-lexer = { path = "../lexer", version = "0.5.0" }
symboscript-types = { path = "../types", version = "0.5.0", features = [
  "parser",
] }

after the cargo ws publish

symboscript-lexer = { path = "../lexer", version = "0.6.0" }
symboscript-types = { path = "../types", version = "0.5.0", features = [
  "parser",
] }

Actually the symboscript-types version has been updated to 0.6.0

artegoser avatar Jan 01 '24 09:01 artegoser

I haven't been able to reproduce this. Are you sure your types packages had changes and was picked to be versioned? If it's not picked up to be versioned, it's version wouldn't change unless you use --all

pksunkara avatar Jan 03 '24 02:01 pksunkara

I am closing this. Please comment here if it's still an issue.

pksunkara avatar Mar 21 '24 18:03 pksunkara