Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: CHANGELOG.md

Issue 1149543002: Change the pre-release range semantics. (Closed) Base URL: git@github.com:dart-lang/pub_semver@master
Patch Set: Code review changes Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1.2.1
2
3 * Allow version ranges like `>=1.2.3-dev.1 <1.2.3` to match pre-release versions
4 of `1.2.3`. Previously, these didn't match, since the pre-release versions had
5 the same major, minor, and patch numbers as the max; now an exception has been
6 added if they also have the same major, minor, and patch numbers as the min
7 *and* the min is also a pre-release version.
8
1 # 1.2.0 9 # 1.2.0
2 10
3 * Add a `VersionConstraint.union()` method and a `new 11 * Add a `VersionConstraint.union()` method and a `new
4 VersionConstraint.unionOf()` constructor. These each return a constraint that 12 VersionConstraint.unionOf()` constructor. These each return a constraint that
5 matches multiple existing constraints. 13 matches multiple existing constraints.
6 14
7 * Add a `VersionConstraint.allowsAll()` method, which returns whether one 15 * Add a `VersionConstraint.allowsAll()` method, which returns whether one
8 constraint is a superset of another. 16 constraint is a superset of another.
9 17
10 * Add a `VersionConstraint.allowsAny()` method, which returns whether one 18 * Add a `VersionConstraint.allowsAny()` method, which returns whether one
(...skipping 11 matching lines...) Expand all
22 breaking changes after a given version. 30 breaking changes after a given version.
23 31
24 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering 32 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering
25 all versions compatible with a given version. 33 all versions compatible with a given version.
26 34
27 * Add a custom `VersionRange.hashCode` to make it properly hashable. 35 * Add a custom `VersionRange.hashCode` to make it properly hashable.
28 36
29 # 1.0.0 37 # 1.0.0
30 38
31 * Initial release. 39 * Initial release.
OLDNEW
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698