From 79772bc00527a273cea3695030cd659e1f6be7ae Mon Sep 17 00:00:00 2001 From: Jubilee <46493976+workingjubilee@users.noreply.github.com> Date: Wed, 14 Aug 2024 09:51:07 -0700 Subject: [PATCH] Bump beta support to Postgres 17beta3 (#1806) --- pgrx-pg-config/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pgrx-pg-config/src/lib.rs b/pgrx-pg-config/src/lib.rs index 98add6d779..4e8e4fbbd3 100644 --- a/pgrx-pg-config/src/lib.rs +++ b/pgrx-pg-config/src/lib.rs @@ -665,12 +665,12 @@ pub fn SUPPORTED_VERSIONS() -> Vec { PgVersion::new(16, PgMinorVersion::Latest, None), PgVersion::new( 17, - PgMinorVersion::Beta(2), + PgMinorVersion::Beta(3), Some( Url::from_str( - "https://ftp.postgresql.org/pub/source/v17beta2/postgresql-17beta2.tar.bz2", + "https://ftp.postgresql.org/pub/source/v17beta3/postgresql-17beta3.tar.bz2", ) - .expect("malformed pg17beta2 url"), + .expect("malformed pg17 beta url"), ), ), ]