From 8b9d76d31fb199716344ec55f6d24db1f2fc5fc7 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Fri, 9 Dec 2022 11:12:28 -0800 Subject: [PATCH] update new version --- Dockerfile | 2 +- cmd/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae28c100..1545c72b 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.10.0 +ARG VERSION=v0.10.1 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 6c9c3fc7..d396a598 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -454,6 +454,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print rosetta-cli version", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v0.10.0") + fmt.Println("v0.10.1") }, }