From ae9f98f4b210fa076c28ba04079d931fee32c5fe Mon Sep 17 00:00:00 2001 From: Fergus Strange Date: Sun, 28 Jul 2024 15:21:30 +1000 Subject: [PATCH] Upgrade versions (#140) * Upgrade versions * Update build version --------- Co-authored-by: ferguss --- .github/workflows/build.yml | 2 +- config.go | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index baad6bc..b64ec69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,7 +71,7 @@ jobs: name: Platform tests strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-11 ] + os: [ ubuntu-latest, windows-latest, macos-14 ] runs-on: ${{ matrix.os }} steps: - name: Checkout 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")