mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
Make the fields of semver::Version public again.
This commit is contained in:
@@ -79,17 +79,17 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
#[deriving(Clone)]
|
||||
pub struct Version {
|
||||
/// The major version, to be incremented on incompatible changes.
|
||||
major: uint,
|
||||
pub major: uint,
|
||||
/// The minor version, to be incremented when functionality is added in a
|
||||
/// backwards-compatible manner.
|
||||
minor: uint,
|
||||
pub minor: uint,
|
||||
/// The patch version, to be incremented when backwards-compatible bug
|
||||
/// fixes are made.
|
||||
patch: uint,
|
||||
pub patch: uint,
|
||||
/// The pre-release version identifier, if one exists.
|
||||
pre: Vec<Identifier>,
|
||||
pub pre: Vec<Identifier>,
|
||||
/// The build metadata, ignored when determining version precedence.
|
||||
build: Vec<Identifier>,
|
||||
pub build: Vec<Identifier>,
|
||||
}
|
||||
|
||||
impl fmt::Show for Version {
|
||||
|
||||
Reference in New Issue
Block a user