-
Notifications
You must be signed in to change notification settings - Fork 722
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
Ability to maintain multiple crates with the same/synchronized version #4626
Comments
Let's say we have
What if we need to patch just
or
|
Cargo unifies crates across the same major version. So, whatever |
The other approach, alternative to tight version coupling In case of That would require keeping backward compatibility with all runtime versions which maybe inconvenient. Not sure however which approach is better. What you propose also seems reasonable - however it may not be possible to keep chain-spec-builder version synced with genesis-builder - e.g. imagine internal refactor of this tool which would require major/minor bump? |
Based on discussion: #4518 (comment)
Relates to: #4518
Current status
#4518 (comment)
The end goal:
In other words, how to maintain or synchronize one crate's
[package.version]
with another crate's[package.version]
regardless of the release branch or master.E.g. the
sp-genesis-builder
has some versionX.Y.Z
, so how to make sure, thatstaging-chain-spec-builder
has/uses the exact same version.The text was updated successfully, but these errors were encountered: