Skip to content

Commit 1d45b76

Browse files
authored
Merge pull request Masterminds#182 from mattfarina/update-lint
Updating golangci-lint version and setup
2 parents 49c09bf + 814be9e commit 1d45b76

File tree

3 files changed

+112
-96
lines changed

3 files changed

+112
-96
lines changed

.github/workflows/golangci-lint.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: golangci-lint
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
golangci:
9+
name: golangci-lint
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
15+
- name: Setup Go
16+
uses: actions/setup-go@v3
17+
with:
18+
go-version: 1.18
19+
- name: golangci-lint
20+
uses: golangci/[email protected]
21+
with:
22+
version: v1.48

.github/workflows/test.yaml

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x]
7+
go-version: [1.17.x, 1.18.x, 1.19.x]
88
platform: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:
@@ -14,12 +14,6 @@ jobs:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
1616
uses: actions/checkout@v1
17-
- name: Install golangci-lint
18-
if: runner.os == 'Linux'
19-
run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
20-
- name: Lint
21-
if: runner.os == 'Linux'
22-
run: $(go env GOPATH)/bin/golangci-lint run
2317
- name: Test
2418
env:
2519
GO111MODULE: on

doc.go

+89-89
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ Package semver provides the ability to work with Semantic Versions (http://semve
33
44
Specifically it provides the ability to:
55
6-
* Parse semantic versions
7-
* Sort semantic versions
8-
* Check if a semantic version fits within a set of constraints
9-
* Optionally work with a `v` prefix
6+
- Parse semantic versions
7+
- Sort semantic versions
8+
- Check if a semantic version fits within a set of constraints
9+
- Optionally work with a `v` prefix
1010
11-
Parsing Semantic Versions
11+
# Parsing Semantic Versions
1212
1313
There are two functions that can parse semantic versions. The `StrictNewVersion`
1414
function only parses valid version 2 semantic versions as outlined in the
@@ -21,48 +21,48 @@ that can be sorted, compared, and used in constraints.
2121
When parsing a version an optional error can be returned if there is an issue
2222
parsing the version. For example,
2323
24-
v, err := semver.NewVersion("1.2.3-beta.1+b345")
24+
v, err := semver.NewVersion("1.2.3-beta.1+b345")
2525
2626
The version object has methods to get the parts of the version, compare it to
2727
other versions, convert the version back into a string, and get the original
2828
string. For more details please see the documentation
2929
at https://godoc.org/github.com/Masterminds/semver.
3030
31-
Sorting Semantic Versions
31+
# Sorting Semantic Versions
3232
3333
A set of versions can be sorted using the `sort` package from the standard library.
3434
For example,
3535
36-
raw := []string{"1.2.3", "1.0", "1.3", "2", "0.4.2",}
37-
vs := make([]*semver.Version, len(raw))
38-
for i, r := range raw {
39-
v, err := semver.NewVersion(r)
40-
if err != nil {
41-
t.Errorf("Error parsing version: %s", err)
42-
}
36+
raw := []string{"1.2.3", "1.0", "1.3", "2", "0.4.2",}
37+
vs := make([]*semver.Version, len(raw))
38+
for i, r := range raw {
39+
v, err := semver.NewVersion(r)
40+
if err != nil {
41+
t.Errorf("Error parsing version: %s", err)
42+
}
4343
44-
vs[i] = v
45-
}
44+
vs[i] = v
45+
}
4646
47-
sort.Sort(semver.Collection(vs))
47+
sort.Sort(semver.Collection(vs))
4848
49-
Checking Version Constraints and Comparing Versions
49+
# Checking Version Constraints and Comparing Versions
5050
5151
There are two methods for comparing versions. One uses comparison methods on
5252
`Version` instances and the other is using Constraints. There are some important
5353
differences to notes between these two methods of comparison.
5454
55-
1. When two versions are compared using functions such as `Compare`, `LessThan`,
56-
and others it will follow the specification and always include prereleases
57-
within the comparison. It will provide an answer valid with the comparison
58-
spec section at https://semver.org/#spec-item-11
59-
2. When constraint checking is used for checks or validation it will follow a
60-
different set of rules that are common for ranges with tools like npm/js
61-
and Rust/Cargo. This includes considering prereleases to be invalid if the
62-
ranges does not include on. If you want to have it include pre-releases a
63-
simple solution is to include `-0` in your range.
64-
3. Constraint ranges can have some complex rules including the shorthard use of
65-
~ and ^. For more details on those see the options below.
55+
1. When two versions are compared using functions such as `Compare`, `LessThan`,
56+
and others it will follow the specification and always include prereleases
57+
within the comparison. It will provide an answer valid with the comparison
58+
spec section at https://semver.org/#spec-item-11
59+
2. When constraint checking is used for checks or validation it will follow a
60+
different set of rules that are common for ranges with tools like npm/js
61+
and Rust/Cargo. This includes considering prereleases to be invalid if the
62+
ranges does not include on. If you want to have it include pre-releases a
63+
simple solution is to include `-0` in your range.
64+
3. Constraint ranges can have some complex rules including the shorthard use of
65+
~ and ^. For more details on those see the options below.
6666
6767
There are differences between the two methods or checking versions because the
6868
comparison methods on `Version` follow the specification while comparison ranges
@@ -76,19 +76,19 @@ patters with their versions.
7676
Checking a version against version constraints is one of the most featureful
7777
parts of the package.
7878
79-
c, err := semver.NewConstraint(">= 1.2.3")
80-
if err != nil {
81-
// Handle constraint not being parsable.
82-
}
79+
c, err := semver.NewConstraint(">= 1.2.3")
80+
if err != nil {
81+
// Handle constraint not being parsable.
82+
}
8383
84-
v, err := semver.NewVersion("1.3")
85-
if err != nil {
86-
// Handle version not being parsable.
87-
}
88-
// Check if the version meets the constraints. The a variable will be true.
89-
a := c.Check(v)
84+
v, err := semver.NewVersion("1.3")
85+
if err != nil {
86+
// Handle version not being parsable.
87+
}
88+
// Check if the version meets the constraints. The a variable will be true.
89+
a := c.Check(v)
9090
91-
Basic Comparisons
91+
# Basic Comparisons
9292
9393
There are two elements to the comparisons. First, a comparison string is a list
9494
of comma or space separated AND comparisons. These are then separated by || (OR)
@@ -99,43 +99,43 @@ greater than or equal to 4.2.3. This can also be written as
9999
100100
The basic comparisons are:
101101
102-
* `=`: equal (aliased to no operator)
103-
* `!=`: not equal
104-
* `>`: greater than
105-
* `<`: less than
106-
* `>=`: greater than or equal to
107-
* `<=`: less than or equal to
102+
- `=`: equal (aliased to no operator)
103+
- `!=`: not equal
104+
- `>`: greater than
105+
- `<`: less than
106+
- `>=`: greater than or equal to
107+
- `<=`: less than or equal to
108108
109-
Hyphen Range Comparisons
109+
# Hyphen Range Comparisons
110110
111111
There are multiple methods to handle ranges and the first is hyphens ranges.
112112
These look like:
113113
114-
* `1.2 - 1.4.5` which is equivalent to `>= 1.2, <= 1.4.5`
115-
* `2.3.4 - 4.5` which is equivalent to `>= 2.3.4 <= 4.5`
114+
- `1.2 - 1.4.5` which is equivalent to `>= 1.2, <= 1.4.5`
115+
- `2.3.4 - 4.5` which is equivalent to `>= 2.3.4 <= 4.5`
116116
117-
Wildcards In Comparisons
117+
# Wildcards In Comparisons
118118
119119
The `x`, `X`, and `*` characters can be used as a wildcard character. This works
120120
for all comparison operators. When used on the `=` operator it falls
121121
back to the tilde operation. For example,
122122
123-
* `1.2.x` is equivalent to `>= 1.2.0 < 1.3.0`
124-
* `>= 1.2.x` is equivalent to `>= 1.2.0`
125-
* `<= 2.x` is equivalent to `<= 3`
126-
* `*` is equivalent to `>= 0.0.0`
123+
- `1.2.x` is equivalent to `>= 1.2.0 < 1.3.0`
124+
- `>= 1.2.x` is equivalent to `>= 1.2.0`
125+
- `<= 2.x` is equivalent to `<= 3`
126+
- `*` is equivalent to `>= 0.0.0`
127127
128128
Tilde Range Comparisons (Patch)
129129
130130
The tilde (`~`) comparison operator is for patch level ranges when a minor
131131
version is specified and major level changes when the minor number is missing.
132132
For example,
133133
134-
* `~1.2.3` is equivalent to `>= 1.2.3 < 1.3.0`
135-
* `~1` is equivalent to `>= 1, < 2`
136-
* `~2.3` is equivalent to `>= 2.3 < 2.4`
137-
* `~1.2.x` is equivalent to `>= 1.2.0 < 1.3.0`
138-
* `~1.x` is equivalent to `>= 1 < 2`
134+
- `~1.2.3` is equivalent to `>= 1.2.3 < 1.3.0`
135+
- `~1` is equivalent to `>= 1, < 2`
136+
- `~2.3` is equivalent to `>= 2.3 < 2.4`
137+
- `~1.2.x` is equivalent to `>= 1.2.0 < 1.3.0`
138+
- `~1.x` is equivalent to `>= 1 < 2`
139139
140140
Caret Range Comparisons (Major)
141141
@@ -144,41 +144,41 @@ The caret (`^`) comparison operator is for major level changes once a stable
144144
as the API stability level. This is useful when comparisons of API versions as a
145145
major change is API breaking. For example,
146146
147-
* `^1.2.3` is equivalent to `>= 1.2.3, < 2.0.0`
148-
* `^1.2.x` is equivalent to `>= 1.2.0, < 2.0.0`
149-
* `^2.3` is equivalent to `>= 2.3, < 3`
150-
* `^2.x` is equivalent to `>= 2.0.0, < 3`
151-
* `^0.2.3` is equivalent to `>=0.2.3 <0.3.0`
152-
* `^0.2` is equivalent to `>=0.2.0 <0.3.0`
153-
* `^0.0.3` is equivalent to `>=0.0.3 <0.0.4`
154-
* `^0.0` is equivalent to `>=0.0.0 <0.1.0`
155-
* `^0` is equivalent to `>=0.0.0 <1.0.0`
147+
- `^1.2.3` is equivalent to `>= 1.2.3, < 2.0.0`
148+
- `^1.2.x` is equivalent to `>= 1.2.0, < 2.0.0`
149+
- `^2.3` is equivalent to `>= 2.3, < 3`
150+
- `^2.x` is equivalent to `>= 2.0.0, < 3`
151+
- `^0.2.3` is equivalent to `>=0.2.3 <0.3.0`
152+
- `^0.2` is equivalent to `>=0.2.0 <0.3.0`
153+
- `^0.0.3` is equivalent to `>=0.0.3 <0.0.4`
154+
- `^0.0` is equivalent to `>=0.0.0 <0.1.0`
155+
- `^0` is equivalent to `>=0.0.0 <1.0.0`
156156
157-
Validation
157+
# Validation
158158
159159
In addition to testing a version against a constraint, a version can be validated
160160
against a constraint. When validation fails a slice of errors containing why a
161161
version didn't meet the constraint is returned. For example,
162162
163-
c, err := semver.NewConstraint("<= 1.2.3, >= 1.4")
164-
if err != nil {
165-
// Handle constraint not being parseable.
166-
}
167-
168-
v, _ := semver.NewVersion("1.3")
169-
if err != nil {
170-
// Handle version not being parseable.
171-
}
172-
173-
// Validate a version against a constraint.
174-
a, msgs := c.Validate(v)
175-
// a is false
176-
for _, m := range msgs {
177-
fmt.Println(m)
178-
179-
// Loops over the errors which would read
180-
// "1.3 is greater than 1.2.3"
181-
// "1.3 is less than 1.4"
182-
}
163+
c, err := semver.NewConstraint("<= 1.2.3, >= 1.4")
164+
if err != nil {
165+
// Handle constraint not being parseable.
166+
}
167+
168+
v, _ := semver.NewVersion("1.3")
169+
if err != nil {
170+
// Handle version not being parseable.
171+
}
172+
173+
// Validate a version against a constraint.
174+
a, msgs := c.Validate(v)
175+
// a is false
176+
for _, m := range msgs {
177+
fmt.Println(m)
178+
179+
// Loops over the errors which would read
180+
// "1.3 is greater than 1.2.3"
181+
// "1.3 is less than 1.4"
182+
}
183183
*/
184184
package semver

0 commit comments

Comments
 (0)