diff --git a/CHANGELOG.md b/CHANGELOG.md index d262878a..1669fb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.0 - 2017-10-12 + +* Core gRPC functionality is implemented and passes +[gRPC compliance tests](https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md). + +The API is shaping up, but may still change as more advanced features are implemented. + + ## 0.0.1 - 2017-07-05 * Initial version. diff --git a/README.md b/README.md index 06b959ff..c6736781 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,8 @@ A [Dart](https://www.dartlang.org/) implementation of [![Build Status](https://travis-ci.org/dart-lang/grpc-dart.svg?branch=master)](https://travis-ci.org/dart-lang/grpc-dart) -***Note***: This implementation is in a very early & experimental state. We do -not recommend using it for anything but experiments. +***Note***: This implementation is in an early state. We do not recommend using +it for production code. + +See the [route_guide example](example/route_guide/) for an example on how to +use this package. diff --git a/example/route_guide/README.md b/example/route_guide/README.md index f703d224..6ad325b6 100644 --- a/example/route_guide/README.md +++ b/example/route_guide/README.md @@ -29,7 +29,7 @@ $ dart bin/client.dart If you have made changes to the message or service definition in `protos/route_guide.proto` and need to regenerate the corresponding Dart files, you will need to have protoc version 3.0.0 or higher and the Dart protoc plugin -version 0.7.6 or higher on your PATH. +version 0.7.7 or higher on your PATH. To install protoc, see the instructions on [the Protocol Buffers website](https://developers.google.com/protocol-buffers/). @@ -40,7 +40,8 @@ The easiest way to get the Dart protoc plugin is by running $ pub global activate protoc_plugin ``` -and follow the directions to add `~/.pub-cache/bin` to your PATH. +and follow the directions to add `~/.pub-cache/bin` to your PATH, if you haven't +already done so. You can now regenerate the Dart files by running diff --git a/pubspec.yaml b/pubspec.yaml index 0605360e..5998d912 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: grpc description: Dart implementation of gRPC. -version: 0.0.1 +version: 0.1.0 author: Dart Team homepage: https://github.com/dart-lang/grpc-dart