prepare to publish (#20)

* prepare to publish

* update to the latest protobuf
diff --git a/.gitignore b/.gitignore
index 25a1df3..00035d7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 packages
 .packages
 pubspec.lock
+.dart_tool
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36b60e0..5d23615 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,7 @@
 ## 0.1.10
 
-* Update th SDK dependency to 2.0.0-dev.17.0.
+* Update the SDK dependency to 2.0.0-dev.17.0.
+* Update to protobuf version 0.8.0
 * Remove usages of deprecated upper-case constants from the SDK.
 
 ## 0.1.9
diff --git a/lib/src/worker_protocol.pb.dart b/lib/src/worker_protocol.pb.dart
index bb31b04..9249cde 100644
--- a/lib/src/worker_protocol.pb.dart
+++ b/lib/src/worker_protocol.pb.dart
@@ -1,12 +1,7 @@
-// Copyright (c) 2016, the Dart project authors.  Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
 ///
 //  Generated code. Do not modify.
 ///
 // ignore_for_file: non_constant_identifier_names,library_prefixes
-library blaze.worker_worker_protocol;
 
 // ignore: UNUSED_SHOWN_NAME
 import 'dart:core' show int, bool, double, String, List, override;
@@ -84,9 +79,9 @@
     if (v is! WorkRequest) checkItemFailed(v, 'WorkRequest');
   }
 
-  List<String> get arguments => $_getN(0);
+  List<String> get arguments => $_getList(0);
 
-  List<Input> get inputs => $_getN(1);
+  List<Input> get inputs => $_getList(1);
 }
 
 class _ReadonlyWorkRequest extends WorkRequest with ReadonlyMessageMixin {}
diff --git a/pubspec.yaml b/pubspec.yaml
index 2d81df7..b091189 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: bazel_worker
-version: 0.1.10-dev
+version: 0.1.10
 description: Tools for creating a bazel persistent worker.
 author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/bazel_worker
@@ -9,7 +9,7 @@
 
 dependencies:
   async: ">1.9.0 <3.0.0"
-  protobuf: ">=0.7.0 <0.8.0"
+  protobuf: ">=0.8.0 <0.9.0"
 
 dev_dependencies:
   test: ^0.12.0