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 @@ -74,17 +74,17 @@ impl ToStr for Identifier {
74
74
#[ deriving( Clone , Eq ) ]
75
75
pub struct Version {
76
76
/// The major version, to be incremented on incompatible changes.
77
- priv major : uint ,
77
+ major : uint ,
78
78
/// The minor version, to be incremented when functionality is added in a
79
79
/// backwards-compatible manner.
80
- priv minor : uint ,
80
+ minor : uint ,
81
81
/// The patch version, to be incremented when backwards-compatible bug
82
82
/// fixes are made.
83
- priv patch : uint ,
83
+ patch : uint ,
84
84
/// The pre-release version identifier, if one exists.
85
- priv pre: ~[ Identifier ] ,
85
+ pre : ~[ Identifier ] ,
86
86
/// The build metadata, ignored when determining version precedence.
87
- priv build : ~[ Identifier ] ,
87
+ build : ~[ Identifier ] ,
88
88
}
89
89
90
90
impl ToStr for Version {
You can’t perform that action at this time.
0 commit comments