File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Sources/PackageDescription4 Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 8
8
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
9
9
*/
10
10
11
- /// A semantic version according to the semantic versioning specification.
11
+ /// A version according to the semantic versioning specification.
12
12
///
13
- /// A package's version must conform to the semantic versioning standard in order to ensure
13
+ /// A package version is a three period-separated integer, for example `1.0.0`. It must conform to the semantic versioning standard in order to ensure
14
14
/// that your package behaves in a predictable manner once developers update their
15
15
/// package dependency to a newer version. To achieve predictability, the semantic versioning specification proposes a set of rules and
16
- /// requirements that dictate how version numbers are assigned and incremented.
17
- ///
18
- /// A package version is a three period-separated integer, for example `1.0.0`.
16
+ /// requirements that dictate how version numbers are assigned and incremented. To learn more about the semantic versioning specification, visit
17
+ /// [semver.org](www.semver.org).
19
18
///
20
19
/// **The Major Version**
21
20
///
37
36
/// This allows clients to benefit from bugfixes to your package without incurring
38
37
/// any maintenance burden.
39
38
///
40
- /// To learn more about the semantic versioning specification, visit
41
- /// [semver.org](www.semver.org).
39
+
42
40
public struct Version {
43
41
44
42
/// The major version according to the semantic versioning standard.
You can’t perform that action at this time.
0 commit comments