Skip to content

Commit e9e4bd3

Browse files
Merge pull request #25 from rustprooflabs/bump-pgx-version
Switch pgx from develop branch to v0.2.0-beta.2
2 parents 0022759 + ad2b7df commit e9e4bd3

File tree

4 files changed

+19
-20
lines changed

4 files changed

+19
-20
lines changed

Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@ pg_test = []
2020

2121
[dependencies]
2222

23-
pgx = { git = "https://github.com/zombodb/pgx", branch = "develop" }
24-
pgx-macros = { git = "https://github.com/zombodb/pgx", branch = "develop" }
25-
#pgx = "0.2.0-beta.1"
26-
#pgx-macros = "0.2.0-beta.1"
23+
#pgx = { git = "https://github.com/zombodb/pgx", branch = "develop" }
24+
#pgx-macros = { git = "https://github.com/zombodb/pgx", branch = "develop" }
25+
pgx = "0.2.0-beta.2"
26+
pgx-macros = "0.2.0-beta.2"
2727

28-
# Won't be needed in final version (hopefully!)
29-
pgx-utils = { git = "https://github.com/zombodb/pgx", branch = "develop" }
30-
#pgx-utils = "0.2.0-beta.1"
28+
#pgx-utils = { git = "https://github.com/zombodb/pgx", branch = "develop" }
29+
pgx-utils = "0.2.0-beta.2"
3130

3231
[dev-dependencies]
33-
pgx-tests = { git = "https://github.com/zombodb/pgx", branch = "develop" }
34-
#pgx-tests = "0.2.0-beta.1"
32+
#pgx-tests = { git = "https://github.com/zombodb/pgx", branch = "develop" }
33+
pgx-tests = "0.2.0-beta.2"
3534

3635

3736
[profile.dev]

build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ BASE=$(dirname `pwd`)
2121
VERSION=$(cat $BASE/pgdd.control | grep default_version | cut -f2 -d\')
2222
LOGDIR=${BASE}/target/logs
2323
ARTIFACTDIR=${BASE}/target/artifacts
24-
PGXVERSION=0.2.0-beta.1
24+
PGXVERSION=0.2.0-beta.2
2525

2626
PG_VERS=("pg10" "pg11" "pg12" "pg13" "pg14")
2727
#PG_VERS=("pg14")

build/docker/pgdd-ubuntu-focal/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ WORKDIR /home/${USER}
3939
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
4040
ENV PATH="/home/${USER}/.cargo/bin:${PATH}"
4141

42-
#RUN /bin/bash rustup.sh -y \
43-
# && cargo install cargo-pgx --version ${PGXVERSION}
4442
RUN /bin/bash rustup.sh -y \
45-
&& cargo install --force --git "https://github.com/zombodb/pgx" \
46-
--branch "develop" \
47-
"cargo-pgx"
43+
&& cargo install cargo-pgx --version ${PGXVERSION}
44+
#RUN /bin/bash rustup.sh -y \
45+
# && cargo install --force --git "https://github.com/zombodb/pgx" \
46+
# --branch "develop" \
47+
# "cargo-pgx"
4848

4949

5050
RUN mkdir -p /home/${USER}/.pgx/data-10 \

build/docker/pgdd-ubuntu-hirsute/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ WORKDIR /home/${USER}
3939
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
4040
ENV PATH="/home/${USER}/.cargo/bin:${PATH}"
4141

42-
#RUN /bin/bash rustup.sh -y \
43-
# && cargo install cargo-pgx --version ${PGXVERSION}
4442
RUN /bin/bash rustup.sh -y \
45-
&& cargo install --force --git "https://github.com/zombodb/pgx" \
46-
--branch "develop" \
47-
"cargo-pgx"
43+
&& cargo install cargo-pgx --version ${PGXVERSION}
44+
#RUN /bin/bash rustup.sh -y \
45+
# && cargo install --force --git "https://github.com/zombodb/pgx" \
46+
# --branch "develop" \
47+
# "cargo-pgx"
4848

4949

5050
RUN mkdir -p /home/${USER}/.pgx/data-10 \

0 commit comments

Comments
 (0)