File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -79,17 +79,17 @@ impl fmt::Show for Identifier {
79
79
#[ deriving( Clone ) ]
80
80
pub struct Version {
81
81
/// The major version, to be incremented on incompatible changes.
82
- major : uint ,
82
+ pub major : uint ,
83
83
/// The minor version, to be incremented when functionality is added in a
84
84
/// backwards-compatible manner.
85
- minor : uint ,
85
+ pub minor : uint ,
86
86
/// The patch version, to be incremented when backwards-compatible bug
87
87
/// fixes are made.
88
- patch : uint ,
88
+ pub patch : uint ,
89
89
/// The pre-release version identifier, if one exists.
90
- pre : Vec < Identifier > ,
90
+ pub pre : Vec < Identifier > ,
91
91
/// The build metadata, ignored when determining version precedence.
92
- build : Vec < Identifier > ,
92
+ pub build : Vec < Identifier > ,
93
93
}
94
94
95
95
impl fmt:: Show for Version {
You can’t perform that action at this time.
0 commit comments