diff --git a/Dockerfile b/Dockerfile index a6bba933..02251099 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.3 +ARG VERSION=v0.10.4 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 db54134b..f32e0103 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -520,6 +520,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print rosetta-cli version", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v0.10.3") + fmt.Println("v0.10.4") }, }