From 62ef1cfc08750cfa4771bb6d84bfea160e660b77 Mon Sep 17 00:00:00 2001 From: izumin5210 Date: Wed, 18 Apr 2018 21:09:47 +0900 Subject: [PATCH] v0.2.1 --- Makefile | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f5404404..83ec2699 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ VERSION_MAJOR ?= 0 VERSION_MINOR ?= 2 -VERSION_BUILD ?= 0 +VERSION_BUILD ?= 1 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) REVISION ?= $(shell git describe --always) diff --git a/README.md b/README.md index bd8a306e..d20838da 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ - Provides gRPC and HTTP JSON API with single implementation by using [grpc-gateway](https://github.com/grpc-ecosystem/grpc-gateway) - Generates codes based on [google's API design guideline](https://cloud.google.com/apis/design/) -[![asciicast](https://asciinema.org/a/172436.png)](https://asciinema.org/a/172436) +[![asciicast](https://asciinema.org/a/176280.png)](https://asciinema.org/a/176280) ## Getting Started ### Installation @@ -31,9 +31,9 @@ $ brew install izumin5210/tools/grapi You should install `protoc` command from [google/protobuf](https://github.com/google/protobuf). - Linux: - - `curl -Lo grapi https://github.com/izumin5210/grapi/releases/download/v0.2.0/grapi_linux_amd64 && chmod +x grapi && sudo mv grapi /usr/local/bin` + - `curl -Lo grapi https://github.com/izumin5210/grapi/releases/download/v0.2.1/grapi_linux_amd64 && chmod +x grapi && sudo mv grapi /usr/local/bin` - masOS: - - `curl -Lo grapi https://github.com/izumin5210/grapi/releases/download/v0.2.0/grapi_darwin_amd64 && chmod +x grapi && sudo mv grapi /usr/local/bin` + - `curl -Lo grapi https://github.com/izumin5210/grapi/releases/download/v0.2.1/grapi_darwin_amd64 && chmod +x grapi && sudo mv grapi /usr/local/bin` ### Create a new application ```