Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.1.0. #35

Merged
merged 1 commit into from
Oct 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <misc@dartlang.org>
homepage: https://github.com/dart-lang/grpc-dart

Expand Down