diff --git a/README.md b/README.md index aa67000..9c75942 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you have to handle rather complex YAML files (for Kubernetes, Concourse, or B ### OS X ``` -$ wget -O /usr/local/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v1.8.1/aviator-darwin-amd64 && chmod +x /usr/local/bin/aviator +$ wget -O /usr/local/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v1.9.0/aviator-darwin-amd64 && chmod +x /usr/local/bin/aviator ``` **Via Homebrew** @@ -30,13 +30,13 @@ $ brew install aviator ### Linux ``` -$ wget -O /usr/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v1.8.1/aviator-linux-amd64 && chmod +x /usr/bin/aviator +$ wget -O /usr/bin/aviator https://github.com/JulzDiverse/aviator/releases/download/v1.9.0/aviator-linux-amd64 && chmod +x /usr/bin/aviator ``` ### Windows (NOT TESTED) ``` -https://github.com/JulzDiverse/aviator/releases/download/v1.8.1/aviator-win +https://github.com/JulzDiverse/aviator/releases/download/v1.9.0/aviator-win ``` ## Usage diff --git a/cmd/aviator/flags.go b/cmd/aviator/flags.go index 7a8618d..2fbfbd6 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 = "1.8.1" + cmd.Version = "1.9.0" cmd.Flags = getFlags() return cmd }