From 1825a126a42219696183343aad6de86610d1f73d Mon Sep 17 00:00:00 2001 From: Fergus Strange Date: Thu, 1 Apr 2021 13:14:36 +1100 Subject: [PATCH] Upgrade all default Postgres versions. (#22) --- config.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.go b/config.go index 5818a2e..5bc12a0 100644 --- a/config.go +++ b/config.go @@ -107,9 +107,9 @@ type PostgresVersion string // Predefined supported Postgres versions. const ( - V13 = PostgresVersion("13.1.0") - V12 = PostgresVersion("12.1.0-1") - V11 = PostgresVersion("11.6.0-1") - V10 = PostgresVersion("10.11.0-1") - V9 = PostgresVersion("9.6.16-1") + V13 = PostgresVersion("13.2.0") + V12 = PostgresVersion("12.6.0") + V11 = PostgresVersion("11.11.0") + V10 = PostgresVersion("10.16.0") + V9 = PostgresVersion("9.6.21") )