From 24ce8d5e658d53e998028c90632d0eb1a6ea0896 Mon Sep 17 00:00:00 2001 From: Mohammed Shahnawaz Date: Thu, 5 Sep 2024 10:50:04 -0700 Subject: [PATCH] Fix pg_search version to v0.7.6 (#755) --- contrib/pg_search/Dockerfile | 2 +- contrib/pg_search/Trunk.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pg_search/Dockerfile b/contrib/pg_search/Dockerfile index c7057476..177bd576 100644 --- a/contrib/pg_search/Dockerfile +++ b/contrib/pg_search/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y # Set default Rust version -RUN /root/.cargo/bin/rustup default 1.75.0-x86_64-unknown-linux-gnu +RUN /root/.cargo/bin/rustup default 1.80.0-x86_64-unknown-linux-gnu ARG PG_VERSION=15 diff --git a/contrib/pg_search/Trunk.toml b/contrib/pg_search/Trunk.toml index 537768f0..07ee8f42 100644 --- a/contrib/pg_search/Trunk.toml +++ b/contrib/pg_search/Trunk.toml @@ -1,6 +1,6 @@ [extension] name = "pg_search" -version = "0.7.3" +version = "0.7.6" repository = "https://github.com/paradedb/paradedb/tree/dev/pg_search" license = "AGPL-3.0" description = "Full text search over heap tables using the BM25 algorithm."