Skip to content

Commit

Permalink
add support for pgrx 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Jan 28, 2024
1 parent 5d27e0c commit 8c669b4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/builder-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- "0.11.0"
- "0.11.1"
- "0.11.2"
- "0.11.3"
exclude:
- pg_version: "16"
pgrx_version: "0.7.4"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg-trunk"
version = "0.12.18"
version = "0.12.19"
edition = "2021"
authors = ["Steven Miller", "Ian Stanton", "Vinícius Miguel"]
description = "A package manager for PostgreSQL extensions"
Expand Down
4 changes: 2 additions & 2 deletions cli/src/commands/pgrx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ pub enum PgrxBuildError {

fn semver_from_range(pgrx_range: &str) -> Result<String, PgrxBuildError> {
let versions = [
"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.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
2 changes: 1 addition & 1 deletion contrib/pgvector/Trunk.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[extension]
name = "pgvector"
version = "0.5.1"
version = "0.5.2"
repository = "https://github.com/pgvector/pgvector"
license = "PostgreSQL"
description = "Open-source vector similarity search for Postgres"
Expand Down

0 comments on commit 8c669b4

Please sign in to comment.