-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rename manifest_version to manifest-version #39630
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
src/tools/build-manifest/src/main.rs
Outdated
let manifest = self.build_manifest(); | ||
let Manifest { manifest_version, date, pkg } = self.build_manifest(); | ||
let mut manifest = BTreeMap::new(); | ||
manifest.insert("manifest-version".to_string(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a comment explaining that rebuilding of the manifest BTreeMap is to correct the 'manifest-version' name.
r=me w/ nit |
The current manifests encode this with a dash in the name, so we should preserve that!
c976680
to
e53eaa3
Compare
@bors: r=brson |
📌 Commit e53eaa3 has been approved by |
Rename manifest_version to manifest-version The current manifests encode this with a dash in the name, so we should preserve that!
Rename manifest_version to manifest-version The current manifests encode this with a dash in the name, so we should preserve that!
Nominating for a beta backport |
The current manifests encode this with a dash in the name, so we should preserve
that!