Skip to content

Commit cc971ee

Browse files
committed
Make cargo-the-binary version the same as the Rust version
Closes #4211
1 parent 62f05f4 commit cc971ee

File tree

1 file changed

+28
-12
lines changed

1 file changed

+28
-12
lines changed

src/cargo/lib.rs

+28-12
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ pub struct CfgInfo {
7272
}
7373

7474
pub struct VersionInfo {
75-
pub major: String,
76-
pub minor: String,
77-
pub patch: String,
75+
pub major: u8,
76+
pub minor: u8,
77+
pub patch: u8,
7878
pub pre_release: Option<String>,
7979
// Information that's only available when we were built with
8080
// configure/make, rather than cargo itself.
@@ -192,12 +192,28 @@ fn handle_cause(cargo_err: &Error, shell: &mut Shell) -> bool {
192192
}
193193

194194
pub fn version() -> VersionInfo {
195-
macro_rules! env_str {
196-
($name:expr) => { env!($name).to_string() }
197-
}
198195
macro_rules! option_env_str {
199196
($name:expr) => { option_env!($name).map(|s| s.to_string()) }
200197
}
198+
199+
// So this is pretty horrible...
200+
// There are two versions at play here:
201+
// - version of cargo-the-binary, which you see when you type `cargo --version`
202+
// - version of cargo-the-library, which you download from crates.io for use
203+
// in your projects.
204+
//
205+
// We want to make the `binary` version the same as the corresponding Rust/rustc release.
206+
// At the same time, we want to keep the library version at `0.x`, because Cargo as
207+
// a library is (and probably will always be) unstable.
208+
//
209+
// Historically, Cargo used the same version number for both the binary and the library.
210+
// Specifically, rustc 1.x.z was paired with cargo 0.x+1.w.
211+
// We continue to use this scheme for the library, but transform it to 1.x.w for the purposes
212+
// of `cargo --version`.
213+
let major = 1;
214+
let minor = env!("CARGO_PKG_VERSION_MINOR").parse::<u8>().unwrap() - 1;
215+
let patch = env!("CARGO_PKG_VERSION_PATCH").parse::<u8>().unwrap();
216+
201217
match option_env!("CFG_RELEASE_CHANNEL") {
202218
// We have environment variables set up from configure/make.
203219
Some(_) => {
@@ -210,9 +226,9 @@ pub fn version() -> VersionInfo {
210226
}
211227
});
212228
VersionInfo {
213-
major: env_str!("CARGO_PKG_VERSION_MAJOR"),
214-
minor: env_str!("CARGO_PKG_VERSION_MINOR"),
215-
patch: env_str!("CARGO_PKG_VERSION_PATCH"),
229+
major,
230+
minor,
231+
patch,
216232
pre_release: option_env_str!("CARGO_PKG_VERSION_PRE"),
217233
cfg_info: Some(CfgInfo {
218234
release_channel: option_env_str!("CFG_RELEASE_CHANNEL").unwrap(),
@@ -223,9 +239,9 @@ pub fn version() -> VersionInfo {
223239
// We are being compiled by Cargo itself.
224240
None => {
225241
VersionInfo {
226-
major: env_str!("CARGO_PKG_VERSION_MAJOR"),
227-
minor: env_str!("CARGO_PKG_VERSION_MINOR"),
228-
patch: env_str!("CARGO_PKG_VERSION_PATCH"),
242+
major,
243+
minor,
244+
patch,
229245
pre_release: option_env_str!("CARGO_PKG_VERSION_PRE"),
230246
cfg_info: None,
231247
}

0 commit comments

Comments
 (0)