Skip to content

Commit

Permalink
Prepare release 0.1.0. (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobr-google authored Oct 12, 2017
1 parent 7b2ff3e commit b82384e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
5 changes: 3 additions & 2 deletions example/route_guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: grpc
description: Dart implementation of gRPC.
version: 0.0.1
version: 0.1.0
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/grpc-dart

Expand Down

0 comments on commit b82384e

Please sign in to comment.