From c6d702082c010723be07a2e1df5b43dc69076b6a Mon Sep 17 00:00:00 2001 From: Eric Ridge Date: Mon, 9 Sep 2024 08:33:58 -0400 Subject: [PATCH] move to Postgres v17rc1 (#1846) --- pgrx-pg-config/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgrx-pg-config/src/lib.rs b/pgrx-pg-config/src/lib.rs index 4e8e4fbbd..131a9439e 100644 --- a/pgrx-pg-config/src/lib.rs +++ b/pgrx-pg-config/src/lib.rs @@ -665,10 +665,10 @@ pub fn SUPPORTED_VERSIONS() -> Vec { PgVersion::new(16, PgMinorVersion::Latest, None), PgVersion::new( 17, - PgMinorVersion::Beta(3), + PgMinorVersion::Rc(1), Some( Url::from_str( - "https://ftp.postgresql.org/pub/source/v17beta3/postgresql-17beta3.tar.bz2", + "https://ftp.postgresql.org/pub/source/v17rc1/postgresql-17rc1.tar.bz2", ) .expect("malformed pg17 beta url"), ),