pksunkara/cargo-workspaces

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

artegoser opened this issue · 2 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

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

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