Update the pubspec and changelog.
diff --git a/pkgs/pub_semver/CHANGELOG.md b/pkgs/pub_semver/CHANGELOG.md index bf0e1f9..5a89ebd 100644 --- a/pkgs/pub_semver/CHANGELOG.md +++ b/pkgs/pub_semver/CHANGELOG.md
@@ -1,3 +1,15 @@ +# 1.1.0 + +* Add support for the `^` operator for compatible versions according to pub's + notion of compatibility. `^1.2.3` is equivalent to `>=1.2.3 <2.0.0`; `^0.1.2` + is equivalent to `>=0.1.2 <0.2.0`. + +* Add `Version.nextBreaking`, which returns the next version that introduces + breaking changes after a given version. + +* Add `new VersionConstraint.compatibleWith()`, which returns a range covering + all versions compatible with a given version. + # 1.0.0 * Initial release.
diff --git a/pkgs/pub_semver/pubspec.yaml b/pkgs/pub_semver/pubspec.yaml index 63b09e1..b422064 100644 --- a/pkgs/pub_semver/pubspec.yaml +++ b/pkgs/pub_semver/pubspec.yaml
@@ -1,5 +1,5 @@ name: pub_semver -version: 1.0.0 +version: 1.1.0-dev author: Dart Team <misc@dartlang.org> description: > Versions and version constraints implementing pub's versioning policy. This