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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback.dart

Issue 235883013: Bump the version of barback for release. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/barback/pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback.dart b/sdk/lib/_internal/pub/lib/src/barback.dart
index 02cd3a1eab8945b420bba545f874e34ea94c0885..fb25742fd85fcd796ceaed9394e159dffccadafa 100644
--- a/sdk/lib/_internal/pub/lib/src/barback.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback.dart
@@ -22,16 +22,19 @@ import 'version.dart';
/// pub.dartlang.org) when they implement their own transformers. Pub's plug-in
/// API dynamically loads transformers into their own isolate.
///
-/// This includes a string literal of Dart code ([_TRANSFORMER_ISOLATE] in
-/// load_transformers.dart). That code imports "package:barback/barback.dart".
-/// This string is included in the SDK, but that import is resolved using the
-/// application’s version of Barback. That means it must tightly control which
-/// version of Barback the application is using so that it's one that pub
-/// supports.
+/// This includes a Dart file (`asset/dart/transformer_isolate.dart`) which
+/// imports "package:barback/barback.dart". This file is included in the SDK,
+/// but that import is resolved using the application’s version of Barback. That
+/// means pub must tightly control which version of Barback the application is
+/// using so that it's one that pub supports.
///
-/// Whenever a new non-patch version of barback is published, this *must* be
-/// incremented to synchronize with that.
-final supportedVersions = new VersionConstraint.parse(">=0.13.0-dev <0.14.0");
+/// Whenever a new minor or patch version of barback is published, this *must*
+/// be incremented to synchronize with that. See the barback [compatibility
+/// documentation][compat] for details on the relationship between this
+/// constraint and barback's version.
+///
+/// [compat]: https://gist.github.com/nex3/10942218
+final supportedVersions = new VersionConstraint.parse(">=0.13.0 <0.14.1");
/// A list of the names of all built-in transformers that pub exposes.
const _BUILT_IN_TRANSFORMERS = const ['\$dart2js'];
« no previous file with comments | « pkg/barback/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698