Skip to content

Commit 0337c9b

Browse files
authored
Merge pull request #124 from mattfarina/v3-rel-notes
Updating the docs for the 3.0.0 release
2 parents 4492473 + be888df commit 0337c9b

File tree

2 files changed

+108
-52
lines changed

2 files changed

+108
-52
lines changed

CHANGELOG.md

+82-31
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,47 @@
1-
# 1.5.0 (2019-09-11)
1+
# Changelog
22

3-
## Added
3+
## 3.0.0 (2019-09-12)
4+
5+
This is a major release of the semver package which includes API changes. The Go
6+
API is compatible with ^1. The Go API was not changed because many people are using
7+
`go get` without Go modules for their applications and API breaking changes cause
8+
errors which we have or would need to support.
9+
10+
The changes in this release are the handling based on the data passed into the
11+
functions. These are described in the added and changed sections below.
12+
13+
### Added
14+
15+
- StrictNewVersion function. This is similar to NewVersion but will return an
16+
error if the version passed in is not a strict semantic version. For example,
17+
1.2.3 would pass but v1.2.3 or 1.2 would fail because they are not strictly
18+
speaking semantic versions. This function is faster, performs fewer operations,
19+
and uses fewer allocations than NewVersion.
20+
- Fuzzing has been performed on NewVersion, StrictNewVersion, and NewConstraint.
21+
The Makefile contains the operations used. For more information on you can start
22+
on Wikipedia at https://en.wikipedia.org/wiki/Fuzzing
23+
- Now using Go modules
24+
25+
### Changed
26+
27+
- NewVersion has proper prerelease and metadata validation with error messages
28+
to signal an issue with either of them
29+
- ^ now operates using a similar set of rules to npm/js and Rust/Cargo. If the
30+
version is >=1 the ^ ranges works the same as v1. For major versions of 0 the
31+
rules have changed. The minor version is treated as the stable version unless
32+
a patch is specified and then it is equivalent to =. One difference from npm/js
33+
is that prereleases there are only to a specific version (e.g. 1.2.3).
34+
Prereleases here look over multiple versions and follow semantic version
35+
ordering rules. This pattern now follows along with the expected and requested
36+
handling of this packaged by numerous users.
37+
38+
## 1.5.0 (2019-09-11)
39+
40+
### Added
441

542
- #103: Add basic fuzzing for `NewVersion()` (thanks @jesse-c)
643

7-
## Changed
44+
### Changed
845

946
- #82: Clarify wildcard meaning in range constraints and update tests for it (thanks @greysteil)
1047
- #83: Clarify caret operator range for pre-1.0.0 dependencies (thanks @greysteil)
@@ -13,97 +50,111 @@
1350
- #89: Test with new go versions (thanks @thedevsaddam)
1451
- #87: Added $ to ValidPrerelease for better validation (thanks @jeremycarroll)
1552

16-
## Fixed
53+
### Fixed
1754

1855
- #78: Fix unchecked error in example code (thanks @ravron)
1956
- #70: Fix the handling of pre-releases and the 0.0.0 release edge case
2057
- #97: Fixed copyright file for proper display on GitHub
2158
- #107: Fix handling prerelease when sorting alphanum and num
2259
- #109: Fixed where Validate sometimes returns wrong message on error
2360

24-
# 1.4.2 (2018-04-10)
61+
## 1.4.2 (2018-04-10)
62+
63+
### Changed
2564

26-
## Changed
2765
- #72: Updated the docs to point to vert for a console appliaction
2866
- #71: Update the docs on pre-release comparator handling
2967

30-
## Fixed
68+
### Fixed
69+
3170
- #70: Fix the handling of pre-releases and the 0.0.0 release edge case
3271

33-
# 1.4.1 (2018-04-02)
72+
## 1.4.1 (2018-04-02)
73+
74+
### Fixed
3475

35-
## Fixed
3676
- Fixed #64: Fix pre-release precedence issue (thanks @uudashr)
3777

38-
# 1.4.0 (2017-10-04)
78+
## 1.4.0 (2017-10-04)
79+
80+
### Changed
3981

40-
## Changed
4182
- #61: Update NewVersion to parse ints with a 64bit int size (thanks @zknill)
4283

43-
# 1.3.1 (2017-07-10)
84+
## 1.3.1 (2017-07-10)
85+
86+
### Fixed
4487

45-
## Fixed
4688
- Fixed #57: number comparisons in prerelease sometimes inaccurate
4789

48-
# 1.3.0 (2017-05-02)
90+
## 1.3.0 (2017-05-02)
91+
92+
### Added
4993

50-
## Added
5194
- #45: Added json (un)marshaling support (thanks @mh-cbon)
5295
- Stability marker. See https://masterminds.github.io/stability/
5396

54-
## Fixed
97+
### Fixed
98+
5599
- #51: Fix handling of single digit tilde constraint (thanks @dgodd)
56100

57-
## Changed
101+
### Changed
102+
58103
- #55: The godoc icon moved from png to svg
59104

60-
# 1.2.3 (2017-04-03)
105+
## 1.2.3 (2017-04-03)
106+
107+
### Fixed
61108

62-
## Fixed
63109
- #46: Fixed 0.x.x and 0.0.x in constraints being treated as *
64110

65-
# Release 1.2.2 (2016-12-13)
111+
## Release 1.2.2 (2016-12-13)
112+
113+
### Fixed
66114

67-
## Fixed
68115
- #34: Fixed issue where hyphen range was not working with pre-release parsing.
69116

70-
# Release 1.2.1 (2016-11-28)
117+
## Release 1.2.1 (2016-11-28)
118+
119+
### Fixed
71120

72-
## Fixed
73121
- #24: Fixed edge case issue where constraint "> 0" does not handle "0.0.1-alpha"
74122
properly.
75123

76-
# Release 1.2.0 (2016-11-04)
124+
## Release 1.2.0 (2016-11-04)
125+
126+
### Added
77127

78-
## Added
79128
- #20: Added MustParse function for versions (thanks @adamreese)
80129
- #15: Added increment methods on versions (thanks @mh-cbon)
81130

82-
## Fixed
131+
### Fixed
132+
83133
- Issue #21: Per the SemVer spec (section 9) a pre-release is unstable and
84134
might not satisfy the intended compatibility. The change here ignores pre-releases
85135
on constraint checks (e.g., ~ or ^) when a pre-release is not part of the
86136
constraint. For example, `^1.2.3` will ignore pre-releases while
87137
`^1.2.3-alpha` will include them.
88138

89-
# Release 1.1.1 (2016-06-30)
139+
## Release 1.1.1 (2016-06-30)
140+
141+
### Changed
90142

91-
## Changed
92143
- Issue #9: Speed up version comparison performance (thanks @sdboyer)
93144
- Issue #8: Added benchmarks (thanks @sdboyer)
94145
- Updated Go Report Card URL to new location
95146
- Updated Readme to add code snippet formatting (thanks @mh-cbon)
96147
- Updating tagging to v[SemVer] structure for compatibility with other tools.
97148

98-
# Release 1.1.0 (2016-03-11)
149+
## Release 1.1.0 (2016-03-11)
99150

100151
- Issue #2: Implemented validation to provide reasons a versions failed a
101152
constraint.
102153

103-
# Release 1.0.1 (2015-12-31)
154+
## Release 1.0.1 (2015-12-31)
104155

105156
- Fixed #1: * constraint failing on valid versions.
106157

107-
# Release 1.0.0 (2015-10-20)
158+
## Release 1.0.0 (2015-10-20)
108159

109160
- Initial release

README.md

+26-21
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,36 @@ If you are looking for a command line tool for version comparisons please see
1818

1919
There are three major versions fo the `semver` package.
2020

21-
* 3.x.x which is currently under development. This version is focused on compatibility
22-
SemVer handling in other tools from other language. It will have a similar API
23-
to the 1.x.x releases. The development of this version is on the master branch.
21+
* 3.x.x is the new stable and active version. This version is focused on constraint
22+
compatibility for range handling in other tools from other languages. It has
23+
a similar API to the v1 releases. The development of this version is on the master
24+
branch. The documentation for this version is below.
2425
* 2.x was developed primarily for [dep](https://github.com/golang/dep). There are
2526
no tagged releases and the development was performed by [@sdboyer](https://github.com/sdboyer).
26-
This version lives on the 2.x branch.
27+
There are API breaking changes from v1. This version lives on the [2.x branch](https://github.com/Masterminds/semver/tree/2.x).
2728
* 1.x.x is the most widely used version with numerous tagged releases. This is the
28-
current stable. The development, to fix bugs, occurs on the release-1 branch.
29+
previous stable and is still maintained for bug fixes. The development, to fix
30+
bugs, occurs on the release-1 branch. You can read the documentation [here](https://github.com/Masterminds/semver/blob/release-1/README.md).
2931

3032
## Parsing Semantic Versions
3133

3234
There are two functions that can parse semantic versions. The `StrictNewVersion`
3335
function only parses valid version 2 semantic versions as outlined in the
3436
specification. The `NewVersion` function attempts to coerce a version into a
3537
semantic version and parse it. For example, if there is a leading v or a version
36-
listed without all 3 parts (e.g. 1.2) it will attempt to coerce it into a valid
38+
listed without all 3 parts (e.g. `v1.2`) it will attempt to coerce it into a valid
3739
semantic version (e.g., 1.2.0). In both cases a `Version` object is returned
3840
that can be sorted, compared, and used in constraints.
3941

40-
When parsing a version an optional error can be returned if there is an issue
41-
parsing the version. For example,
42+
When parsing a version an error is returned if there is an issue parsing the
43+
version. For example,
4244

4345
v, err := semver.NewVersion("1.2.3-beta.1+build345")
4446

4547
The version object has methods to get the parts of the version, compare it to
4648
other versions, convert the version back into a string, and get the original
47-
string.
49+
string. Getting the original string is useful if the semantic version was coerced
50+
into a valid form.
4851

4952
## Sorting Semantic Versions
5053

@@ -69,26 +72,26 @@ sort.Sort(semver.Collection(vs))
6972
## Checking Version Constraints
7073

7174
There are two methods for comparing versions. One uses comparison methods on
72-
`Version` instances and the other is using Constraints. There are some important
75+
`Version` instances and the other uses `Constraints`. There are some important
7376
differences to notes between these two methods of comparison.
7477

7578
1. When two versions are compared using functions such as `Compare`, `LessThan`,
7679
and others it will follow the specification and always include prereleases
77-
within the comparison. It will provide an answer valid with the comparison
78-
spec section at https://semver.org/#spec-item-11
80+
within the comparison. It will provide an answer that is valid with the
81+
comparison section of the spec at https://semver.org/#spec-item-11
7982
2. When constraint checking is used for checks or validation it will follow a
8083
different set of rules that are common for ranges with tools like npm/js
8184
and Rust/Cargo. This includes considering prereleases to be invalid if the
82-
ranges does not include on. If you want to have it include pre-releases a
85+
ranges does not include one. If you want to have it include pre-releases a
8386
simple solution is to include `-0` in your range.
84-
3. Constraint ranges can have some complex rules including the shorthard use of
87+
3. Constraint ranges can have some complex rules including the shorthand use of
8588
~ and ^. For more details on those see the options below.
8689

8790
There are differences between the two methods or checking versions because the
8891
comparison methods on `Version` follow the specification while comparison ranges
8992
are not part of the specification. Different packages and tools have taken it
9093
upon themselves to come up with range rules. This has resulted in differences.
91-
For example, npm/js and Cargo/Rust follow similar patterns which PHP has a
94+
For example, npm/js and Cargo/Rust follow similar patterns while PHP has a
9295
different pattern for ^. The comparison features in this package follow the
9396
npm/js and Cargo/Rust lead because applications using it have followed similar
9497
patters with their versions.
@@ -113,8 +116,8 @@ a := c.Check(v)
113116
### Basic Comparisons
114117

115118
There are two elements to the comparisons. First, a comparison string is a list
116-
of comma separated AND comparisons. These are then separated by || (OR)
117-
comparisons. For example, `">= 1.2, < 3.0.0 || >= 4.2.3"` is looking for a
119+
of space or comma separated AND comparisons. These are then separated by || (OR)
120+
comparisons. For example, `">= 1.2 < 3.0.0 || >= 4.2.3"` is looking for a
118121
comparison that's greater than or equal to 1.2 and less than 3.0.0 or is
119122
greater than or equal to 4.2.3.
120123

@@ -147,7 +150,9 @@ at a list of releases while `>=1.2.3-0` will evaluate and find prereleases.
147150

148151
The reason for the `0` as a pre-release version in the example comparison is
149152
because pre-releases can only contain ASCII alphanumerics and hyphens (along with
150-
`.` separators), per the spec. Sorting happens in ASCII sort order, again per the spec. The lowest character is a `0` in ASCII sort order (see an [ASCII Table](http://www.asciitable.com/))
153+
`.` separators), per the spec. Sorting happens in ASCII sort order, again per the
154+
spec. The lowest character is a `0` in ASCII sort order
155+
(see an [ASCII Table](http://www.asciitable.com/))
151156

152157
Understanding ASCII sort ordering is important because A-Z comes before a-z. That
153158
means `>=1.2.3-BETA` will return `1.2.3-alpha`. What you might expect from case
@@ -159,14 +164,14 @@ the spec specifies.
159164
There are multiple methods to handle ranges and the first is hyphens ranges.
160165
These look like:
161166

162-
* `1.2 - 1.4.5` which is equivalent to `>= 1.2, <= 1.4.5`
163-
* `2.3.4 - 4.5` which is equivalent to `>= 2.3.4, <= 4.5`
167+
* `1.2 - 1.4.5` which is equivalent to `>= 1.2 <= 1.4.5`
168+
* `2.3.4 - 4.5` which is equivalent to `>= 2.3.4 <= 4.5`
164169

165170
### Wildcards In Comparisons
166171

167172
The `x`, `X`, and `*` characters can be used as a wildcard character. This works
168173
for all comparison operators. When used on the `=` operator it falls
169-
back to the pack level comparison (see tilde below). For example,
174+
back to the patch level comparison (see tilde below). For example,
170175

171176
* `1.2.x` is equivalent to `>= 1.2.0, < 1.3.0`
172177
* `>= 1.2.x` is equivalent to `>= 1.2.0`

0 commit comments

Comments
 (0)