From 99dd39865e263fa4002492de296db899e47f0fda Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Mon, 25 Sep 2023 15:02:36 -0700 Subject: [PATCH] Update Rust to 1.72.1 --- doc/book.toml | 2 +- doc/src/install-plrust-on-debian-ubuntu.md | 2 +- plrust/build | 2 +- plrustc/build.sh | 4 ++-- plrustc/rust-toolchain.toml | 2 +- rust-toolchain.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/book.toml b/doc/book.toml index 39812464..7a39a7b4 100644 --- a/doc/book.toml +++ b/doc/book.toml @@ -6,4 +6,4 @@ src = "src" title = "PL/Rust Guide" [preprocessor.variables.variables] -toolchain_ver = "1.72.0" +toolchain_ver = "1.72.1" diff --git a/doc/src/install-plrust-on-debian-ubuntu.md b/doc/src/install-plrust-on-debian-ubuntu.md index 8eac6d7d..2cde4b1f 100644 --- a/doc/src/install-plrust-on-debian-ubuntu.md +++ b/doc/src/install-plrust-on-debian-ubuntu.md @@ -28,7 +28,7 @@ Where: Example: ``` -plrust-trusted-1.2.3_1.72.0-debian-pg15-amd64.deb +plrust-trusted-1.2.3_1.72.1-debian-pg15-amd64.deb ``` ## Preparing the environment diff --git a/plrust/build b/plrust/build index 678bcfec..674f6ae9 100755 --- a/plrust/build +++ b/plrust/build @@ -75,7 +75,7 @@ fi git pull git submodule update --init --recursive else - git clone https://github.com/tcdi/postgrestd.git --branch "rust-1.72.0" --recurse-submodules + git clone https://github.com/tcdi/postgrestd.git --branch "rust-1.72.1" --recurse-submodules cd ./postgrestd fi rm -f rust-toolchain.toml diff --git a/plrustc/build.sh b/plrustc/build.sh index 42315378..0c05702e 100755 --- a/plrustc/build.sh +++ b/plrustc/build.sh @@ -25,8 +25,8 @@ fi export RUSTC_BOOTSTRAP=1 version=$($RUSTC --version | cut -d ' ' -f 2) -if [ "$version" != "1.72.0" ]; then - echo "rustc ('$RUSTC') is not version 1.72.0" >&2 +if [ "$version" != "1.72.1" ]; then + echo "rustc ('$RUSTC') is not version 1.72.1" >&2 exit 1 fi diff --git a/plrustc/rust-toolchain.toml b/plrustc/rust-toolchain.toml index 3f04015d..6f5370e2 100644 --- a/plrustc/rust-toolchain.toml +++ b/plrustc/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.72.0" +channel = "1.72.1" components = [ "rustfmt", "rust-src", "rustc-dev", "cargo", "llvm-tools" ] targets = [ ] profile = "minimal" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ffb76ff9..f921e86e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.72.0" +channel = "1.72.1" components = [ "rustfmt", "rust-src", "rustc-dev", "llvm-tools" ] targets = [ ] profile = "minimal"