Skip to content

Commit cf29d32

Browse files
Bump 0.3.1
- [x] Update rustup - [x] Update deps - [x] Bump extension version - [x] Append sql update script that we missed when tagging 0.3 Co-authored-by: Ming <[email protected]>
1 parent 2f0e2a8 commit cf29d32

File tree

13 files changed

+546
-447
lines changed

13 files changed

+546
-447
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
4646
ENV PATH="/home/rust/.cargo/bin:${PATH}"
4747

4848
# install and configure pgrx
49-
ARG PGRX_VERSION=0.12.9
49+
ARG PGRX_VERSION=0.13.1
5050
RUN cargo install --locked cargo-pgrx@${PGRX_VERSION}
5151
RUN cargo pgrx init --pg${PG_MAJOR} $(which pg_config)
5252
RUN echo "shared_preload_libraries = 'pg_parquet'" >> $HOME/.pgrx/data-${PG_MAJOR}/postgresql.conf

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Rust
4242
uses: dtolnay/rust-toolchain@stable
4343
with:
44-
toolchain: 1.83.0
44+
toolchain: 1.85.0
4545
target: x86_64-unknown-linux-gnu
4646
components: rustfmt, clippy, llvm-tools-preview
4747

@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Install and configure pgrx
9595
run: |
96-
cargo install --locked cargo-pgrx@0.12.9
96+
cargo install --locked cargo-pgrx@0.13.1
9797
cargo pgrx init --pg${{ env.PG_MAJOR }} /usr/lib/postgresql/${{ env.PG_MAJOR }}/bin/pg_config
9898
9999
- name: Install cargo-llvm-cov for coverage report

0 commit comments

Comments
 (0)