From 2c316ddaca2e45e52a70933399fd86a5aeccfecb Mon Sep 17 00:00:00 2001 From: Julian Skupnjak Date: Thu, 8 Mar 2018 10:18:03 +0100 Subject: [PATCH] update aviator to version number v0.17.0 --- README.md | 4 ++-- cmd/aviator/flags.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4cab1da..a732848 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ If you have to handle rather complex YAML files (for BOSH or Concourse), you jus ### OS X ``` -$ wget -O /usr/local/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.16.0/aviator-darwin-amd64 && chmod +x /usr/local/bin/aviator +$ wget -O /usr/local/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.17.0/aviator-darwin-amd64 && chmod +x /usr/local/bin/aviator ``` **Via Homebrew** @@ -26,7 +26,7 @@ $ brew install aviator ### Linux ``` -$ wget -O /usr/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.16.0/aviator-linux-amd64 && chmod +x /usr/bin/aviator +$ wget -O /usr/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.17.0/aviator-linux-amd64 && chmod +x /usr/bin/aviator ``` ## Executors diff --git a/cmd/aviator/flags.go b/cmd/aviator/flags.go index cb674ce..e5bc070 100644 --- a/cmd/aviator/flags.go +++ b/cmd/aviator/flags.go @@ -12,7 +12,7 @@ func setCli() *cli.App { } cmd.Name = "Aviator" cmd.Usage = "Navigate to a aviator.yml file and run aviator" - cmd.Version = "0.16.0" + cmd.Version = "0.17.0" cmd.Flags = getFlags() return cmd }