From 5cb502ca467a599a70981b61b93e0b108c0f7ec1 Mon Sep 17 00:00:00 2001 From: Jingfu Wang Date: Sun, 21 Aug 2022 22:46:26 -0400 Subject: [PATCH] feat: update version Signed-off-by: Jingfu Wang --- Dockerfile | 2 +- cmd/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e184edc..928f3921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH" WORKDIR /go/src -ARG VERSION=v0.8.0 +ARG VERSION=v0.9.0 RUN git clone https://github.com/coinbase/rosetta-cli.git && \ cd rosetta-cli && \ git fetch --all --tags && \ diff --git a/cmd/root.go b/cmd/root.go index 978c4b3d..48eba524 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -434,6 +434,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print rosetta-cli version", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v0.8.0") + fmt.Println("v0.9.0") }, }