diff --git a/README.md b/README.md index 2d40705..5fc7dad 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.11.0/aviator-darwin-amd64 && chmod +x /usr/local/bin/aviator +$ wget -O /usr/local/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.12.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.11.0/aviator-linux-amd64 && chmod +x /usr/bin/aviator +$ wget -O /usr/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v0.12.0/aviator-linux-amd64 && chmod +x /usr/bin/aviator ``` ## Executors diff --git a/cmd/aviator/flags.go b/cmd/aviator/flags.go index 97a1a49..9207d2c 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.11.0" + cmd.Version = "0.12.0" cmd.Flags = getFlags() return cmd }