Homebrew installs v0.14

I’m trying to follow quickinstall.

How can I get the latest version?

What is the output of the following commands?

brew --version
brew info hugo

Also, what version of MacOS X are you running?

-j

Thanks! Below are the results:

as-MacBook-Air:~ a$ brew --version
Homebrew 1.4.2
Homebrew/homebrew-core (git revision 6e7b; last commit 2018-01-06)
as-MacBook-Air:~ a$ brew info hugo
hugo: stable 0.32.2 (bottled), HEAD
Configurable static site generator
https://gohugo.io/
/usr/local/Cellar/hugo/0.14 (5 files, 15.9MB)
  Poured from bottle on 2015-09-22 at 14:00:01
/usr/local/Cellar/hugo/0.32.2 (33 files, 36.8MB)
  Poured from bottle on 2018-01-06 at 19:23:04
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/hugo.rb
==> Dependencies
Build: dep ✘, go ✘
==> Caveats
Bash completion has been installed to:
  /usr/local/etc/bash_completion.d
as-MacBook-Air:~ a$

MacOSX El Capitan 10.11.6

Okay, so brew info hugo shows both 0.14 and 0.32.2 installed (claiming you installed 0.14 back in September 2015). I’d do the following:

brew uninstall hugo
brew cleanup
brew update
brew install hugo

If things are still messed up after that, run brew doctor and check for errors.

-j