Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to pg16beta2 support #1188

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pgrx-pg-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -655,12 +655,12 @@ pub fn SUPPORTED_VERSIONS() -> Vec<PgVersion> {
PgVersion::new(15, PgMinorVersion::Latest, None),
PgVersion::new(
16,
PgMinorVersion::Beta(1),
PgMinorVersion::Beta(2),
Some(
Url::parse(
"https://ftp.postgresql.org/pub/source/v16beta1/postgresql-16beta1.tar.bz2",
"https://ftp.postgresql.org/pub/source/v16beta2/postgresql-16beta2.tar.bz2",
)
.expect("invalid url for v16beta1"),
.expect("invalid url for v16beta2"),
),
),
]
Expand Down
Loading
Loading