From 81c4cf80a0da40e35f9d53230d03629e7a600977 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Thu, 14 Apr 2022 12:12:39 +0200 Subject: [PATCH] fix: update help and README to v0.8.0 Prior to this commit, `ipget` reported its version as 0.7.0 which is not correct. --- README.md | 12 +++++++----- main.go | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 65a9a072..7e2db61e 100644 --- a/README.md +++ b/README.md @@ -52,16 +52,18 @@ USAGE: ipget [global options] command [command options] [arguments...] VERSION: - 0.7.0 + 0.8.0 COMMANDS: + help, h Shows a list of commands or help for one command + GLOBAL OPTIONS: --output value, -o value specify output location - --node temp, -n temp specify ipfs node strategy ('local', 'spawn', temp or 'fallback') (default: "fallback") + --node value, -n value specify ipfs node strategy ("local", "spawn", "temp" or "fallback") (default: "fallback") --peers value, -p value specify a set of IPFS peers to connect to - --progress show a progress bar - --help, -h show help - --version, -v print the version + --progress show a progress bar (default: false) + --help, -h show help (default: false) + --version, -v print the version (default: false) ``` ## Contribute diff --git a/main.go b/main.go index bf9b351f..ca2393ca 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ func main() { app := cli.NewApp() app.Name = "ipget" app.Usage = "Retrieve and save IPFS objects." - app.Version = "0.7.0" + app.Version = "0.8.0" app.Flags = []cli.Flag{ &cli.StringFlag{ Name: "output",