Commit 5877c69
authored
Fixes semver comparison (#251)
The fix in #230 changed the `6.0.0-0`
comparison into `6.0.0`. I was thinking that `check_ignore_rc` would
ignore all RCs, but it's a little stricter than I thought and still took
into account the one from the original range (in other words, it accepts
`7.0.0-rc`, but it still requires the version to be greater than
`6.0.0`).
This diff fixes that by reverting to `6.0.0-0` which, together with
`check_ignore_rc`, provides the right result.1 parent 16a4f84 commit 5877c69
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
160 | 160 | | |
161 | 161 | | |
162 | 162 | | |
163 | | - | |
| 163 | + | |
164 | 164 | | |
165 | 165 | | |
166 | 166 | | |
167 | | - | |
| 167 | + | |
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
171 | | - | |
| 171 | + | |
172 | 172 | | |
173 | 173 | | |
174 | 174 | | |
| |||
0 commit comments