From 3b10d84862053f3e04d20f3f5ad098e28dd8fc68 Mon Sep 17 00:00:00 2001 From: ferguss Date: Sun, 28 Jul 2024 11:06:28 +1000 Subject: [PATCH] Upgrade versions --- config.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.go b/config.go index 97e48d0..00faebd 100644 --- a/config.go +++ b/config.go @@ -153,11 +153,11 @@ type PostgresVersion string // Predefined supported Postgres versions. const ( - V16 = PostgresVersion("16.2.0") - V15 = PostgresVersion("15.6.0") - V14 = PostgresVersion("14.11.0") - V13 = PostgresVersion("13.14.0") - V12 = PostgresVersion("12.17.0") + V16 = PostgresVersion("16.3.0") + V15 = PostgresVersion("15.7.0") + V14 = PostgresVersion("14.12.0") + V13 = PostgresVersion("13.15.0") + V12 = PostgresVersion("12.19.0") V11 = PostgresVersion("11.22.0") V10 = PostgresVersion("10.23.0") V9 = PostgresVersion("9.6.24")