Upgraded Postgres to 14.4 on Homebrew
Thursday, August 11th, 2022Nothing major, but I did notice that 14.4 was the stable release of Postgres, and so I decided it was time to upgrade to the latest from Homebrew. And it really is very easy (again):
$ brew upgrade postgresql
and then after all the downloading and installing, we have:
$ psql --version psql (PostgreSQL) 14.4
Then we are good to go! 🙂
Interestingly, this time I didn't have to run:
$ brew services restart postgresql
for when I did, it told me it was already running. Nice - it restarted on it's own. 🙂