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

Side by Side Diff: CHANGELOG.md

Issue 687973004: Add VersionRange.hashCode. (Closed) Base URL: git@github.com:dart-lang/pub_semver@master
Patch Set: Created 6 years, 1 month 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 | lib/src/version_range.dart » ('j') | lib/src/version_range.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1.1.0 1 # 1.1.0
2 2
3 * Add support for the `^` operator for compatible versions according to pub's 3 * Add support for the `^` operator for compatible versions according to pub's
4 notion of compatibility. `^1.2.3` is equivalent to `>=1.2.3 <2.0.0`; `^0.1.2` 4 notion of compatibility. `^1.2.3` is equivalent to `>=1.2.3 <2.0.0`; `^0.1.2`
5 is equivalent to `>=0.1.2 <0.2.0`. 5 is equivalent to `>=0.1.2 <0.2.0`.
6 6
7 * Add `Version.nextBreaking`, which returns the next version that introduces 7 * Add `Version.nextBreaking`, which returns the next version that introduces
8 breaking changes after a given version. 8 breaking changes after a given version.
9 9
10 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering 10 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering
11 all versions compatible with a given version. 11 all versions compatible with a given version.
12 12
13 * Add a custom `VersionRange.hashCode` to make it properly hashable.
14
13 # 1.0.0 15 # 1.0.0
14 16
15 * Initial release. 17 * Initial release.
OLDNEW
« no previous file with comments | « no previous file | lib/src/version_range.dart » ('j') | lib/src/version_range.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698