Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobr-google committed May 28, 2018
1 parent 36d1ccd commit 249f8f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.4

* Dart 2 support with `dart2_constant`.

## 0.1.3

* `PackageRepository.download` now has more specific return type:
Expand All @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: pub_server
version: 0.1.4-dev
version: 0.1.4
author: Dart Team <[email protected]>
description: A Dart package containing re-usable components for making a pub package server.
homepage: https://github.com/dart-lang/pub_server
Expand Down
2 changes: 1 addition & 1 deletion test/shelf_pubserver_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ shelf.Request getRequest(String path) {
}

shelf.Request multipartRequest(Uri uri, List<int> bytes) {
var requestBytes = [];
var requestBytes = <int>[];
String boundary = 'testboundary';

requestBytes.addAll(convert.ascii.encode('--$boundary\r\n'));
Expand Down

0 comments on commit 249f8f6

Please sign in to comment.