diff --git a/CHANGELOG.md b/CHANGELOG.md index 680acea..cbcd201 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.4 + +* Dart 2 support with `dart2_constant`. + ## 0.1.3 * `PackageRepository.download` now has more specific return type: @@ -7,8 +11,6 @@ * Update minimum Dart SDK to `1.23.0`. -* Dart 2 support with `dart2_constant`. - ## 0.1.2 * Add support for generic exceptions raised e.g. due to `pubspec.yaml` diff --git a/pubspec.yaml b/pubspec.yaml index 231ae74..2ac7dc3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: pub_server -version: 0.1.4-dev +version: 0.1.4 author: Dart Team description: A Dart package containing re-usable components for making a pub package server. homepage: https://github.com/dart-lang/pub_server diff --git a/test/shelf_pubserver_test.dart b/test/shelf_pubserver_test.dart index d924f37..c7af9b4 100644 --- a/test/shelf_pubserver_test.dart +++ b/test/shelf_pubserver_test.dart @@ -133,7 +133,7 @@ shelf.Request getRequest(String path) { } shelf.Request multipartRequest(Uri uri, List bytes) { - var requestBytes = []; + var requestBytes = []; String boundary = 'testboundary'; requestBytes.addAll(convert.ascii.encode('--$boundary\r\n'));