Skip to content

Commit

Permalink
support pgrx v0.12.7 (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend authored Oct 30, 2024
1 parent 75f7748 commit d4c8255
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/builder-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ jobs:
- "0.12.4"
- "0.12.5"
- "0.12.6"
- "0.12.7"
exclude:
- pg_version: "16"
pgrx_version: "0.7.4"
Expand Down Expand Up @@ -225,6 +226,7 @@ jobs:
- "0.12.4"
- "0.12.5"
- "0.12.6"
- "0.12.7"
exclude:
- pg_version: "16"
pgrx_version: "0.7.4"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "pg-trunk"
version = "0.12.30"
version = "0.12.31"
edition = "2021"
authors = ["Steven Miller", "Ian Stanton", "Vinícius Miguel"]
authors = ["Ian Stanton", "Vinícius Miguel"]
description = "A package manager for PostgreSQL extensions"
homepage = "https://pgt.dev"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions cli/src/commands/pgrx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ pub enum PgrxBuildError {

fn semver_from_range(pgrx_range: &str) -> Result<String, PgrxBuildError> {
let versions = [
"0.12.6", "0.12.5", "0.12.4", "0.12.3", "0.12.2", "0.12.1", "0.12.0", "0.11.4", "0.11.3",
"0.11.2", "0.11.1", "0.11.0", "0.10.2", "0.10.1", "0.10.0", "0.9.8", "0.9.7", "0.9.1",
"0.9.0", "0.8.4", "0.8.3", "0.8.0", "0.7.4",
"0.12.7", "0.12.6", "0.12.5", "0.12.4", "0.12.3", "0.12.2", "0.12.1", "0.12.0", "0.11.4",
"0.11.3", "0.11.2", "0.11.1", "0.11.0", "0.10.2", "0.10.1", "0.10.0", "0.9.8", "0.9.7",
"0.9.1", "0.9.0", "0.8.4", "0.8.3", "0.8.0", "0.7.4",
];

if versions.contains(&pgrx_range) {
Expand Down

0 comments on commit d4c8255

Please sign in to comment.