Skip to content

Commit

Permalink
Bump version to 0.3.0 with pg16 compat (#47)
Browse files Browse the repository at this point in the history
* bump version to 0.3.0 with pg16 compat

* bump default feature to pg16 to match tests dockerfile

* use stable rust toolchain in Dockerfile

---------

Co-authored-by: Raminder Singh <romi_ssk@yahoo.co.in>
  • Loading branch information
olirice and imor committed Feb 29, 2024
1 parent e8c331f commit 7c43f1e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "pg_jsonschema"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

[lib]
crate-type = ["cdylib"]

[features]
default = ["pg15"]
default = ["pg16"]
pg12 = ["pgrx/pg12", "pgrx-tests/pg12" ]
pg13 = ["pgrx/pg13", "pgrx-tests/pg13" ]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14" ]
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/db/Dockerfile
Expand Up @@ -21,7 +21,7 @@ RUN chown postgres:postgres /home/supa
USER postgres

RUN \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain nightly && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain stable && \
rustup --version && \
rustc --version && \
cargo --version
Expand Down

0 comments on commit 7c43f1e

Please sign in to comment.