mirror of https://github.com/grpc/grpc-dart.git
Prepare release 0.1.0. (#35)
This commit is contained in:
parent
7b2ff3e571
commit
b82384ee08
|
@ -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.
|
||||
|
|
|
@ -3,5 +3,8 @@ A [Dart](https://www.dartlang.org/) implementation of
|
|||
|
||||
[](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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue