From 0de1e426a545eec5fbf963a875f27e500aeee82c Mon Sep 17 00:00:00 2001 From: irisZhangCB <98374544+irisZhangCB@users.noreply.github.com> Date: Fri, 20 May 2022 14:34:21 -0700 Subject: [PATCH] Bump version (#318) --- Dockerfile | 2 +- cmd/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4840968b..edd3b8cc 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.7.9 +ARG VERSION=v0.7.8 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 0291ee33..3772530d 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -383,6 +383,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print rosetta-cli version", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v0.7.9") + fmt.Println("v0.7.8") }, }