-
Notifications
You must be signed in to change notification settings - Fork 402
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
chore: bump version tag #1946
chore: bump version tag #1946
Conversation
crates/cli/src/lib.rs
Outdated
@@ -7,7 +7,7 @@ use std::process::{Command, Stdio}; | |||
pub const RUSTUP_TOOLCHAIN_NAME: &str = "succinct"; | |||
|
|||
/// The latest version (github tag) of the toolchain that is supported by our build system. | |||
pub const LATEST_SUPPORTED_TOOLCHAIN_VERSION_TAG: &str = "v1.82.0"; | |||
pub const LATEST_SUPPORTED_TOOLCHAIN_VERSION_TAG: &str = "succinct-1.82.0-20.04"; |
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.
Is this correct? What happens on ARM machines for this?
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.
LGTM, one small documentation comment.
@@ -7,7 +7,10 @@ use std::process::{Command, Stdio}; | |||
pub const RUSTUP_TOOLCHAIN_NAME: &str = "succinct"; | |||
|
|||
/// The latest version (github tag) of the toolchain that is supported by our build system. | |||
pub const LATEST_SUPPORTED_TOOLCHAIN_VERSION_TAG: &str = "v1.82.0"; | |||
/// | |||
/// This tag has suppoert for older x86 libc versions (like the one found in Ubuntu 20.04). |
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.
typos:
/// This tag has suppoert for older x86 libc versions (like the one found in Ubuntu 20.04). | |
/// This tag has support for older x86 libc versions (like the one found in Ubuntu 20.04). |
No description provided.