forked from stepancheg/grpc-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e5ecde
commit b64fe0d
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "grpc" | ||
version = "0.1.10" | ||
version = "0.1.11" | ||
authors = ["Stepan Koltsov <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "Rust implementation of gRPC" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grpc-compiler" | ||
version = "0.1.10" | ||
version = "0.1.11" | ||
description = "gRPC compiler for rust-grpc" | ||
license = "MIT/Apache-2.0" | ||
authors = ["Stepan Koltsov <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[package] | ||
name = "protoc-rust-grpc" | ||
version = "0.1.10" | ||
version = "0.1.11" | ||
authors = ["Stepan Koltsov <[email protected]>"] | ||
homepage = "https://github.com/stepancheg/rust-protobuf/protoc-rust/" | ||
repository = "https://github.com/stepancheg/rust-protobuf/protoc-rust/" | ||
license = "MIT/Apache-2.0" | ||
description = """ | ||
protoc --rust-grpc_out=... available as API. protoc needs to be in $PATH, protoc-gen-rust-grpc does not. | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
#!/bin/sh -e | ||
|
||
version="0.1.10" | ||
version="0.1.11" | ||
|
||
sed -e 's,^version = .*,version = "'$version'",' -i '' \ | ||
Cargo.toml grpc-compiler/Cargo.toml protoc-rust-grpc/Cargo.toml | ||
|
||
sed -e '/grpc/ s,^version = .*,version = "'$version'",' -i '' \ | ||
protoc-rust-grpc/Cargo.toml | ||
|
||
# vim: set ts=4 sw=4 et: |