Skip to content
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

Make the fields of semver::Version public again. #13339

Merged
merged 1 commit into from
Apr 5, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/libsemver/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,17 @@ impl fmt::Show for Identifier {
#[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 {
Expand Down