Skip to content

Commit

Permalink
fix semver in utils/crates-io
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on committed Dec 16, 2024
1 parent 83004c8 commit 0af7df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/crates-io/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Workspace {
let version = if let Some(version) = version {
version
} else {
workspace.version()? + "-" + &version::hash()?
workspace.version()? + "-" + &version::hash()? + "commit"
};

workspace.mutable_manifest["workspace"]["package"]["version"] =
Expand Down

0 comments on commit 0af7df8

Please sign in to comment.