From b39499bdfaededde0225607b06afdadd931d4d77 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 23 Mar 2023 11:48:44 -0700 Subject: [PATCH] deps(proto): Update to v0.3.2. (#741) * Update docs. * Bump crate. --- Cargo.lock | 24 +++++++++---------- Cargo.toml | 2 +- website/docs/proto/install.mdx | 6 +++++ .../src/components/Products/Proto/Hero.tsx | 2 +- website/static/install/proto.ps1 | 2 +- website/static/install/proto.sh | 2 +- 6 files changed, 22 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1bee241865..4d8d842037c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3582,9 +3582,9 @@ dependencies = [ [[package]] name = "proto_bun" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1607e1e796f5b7d07397ba7862baf09cc5c179f44a575f4e8f5eac67888cf675" +checksum = "98ca8b896e6ec80cfb3e9bed1879c23466a93d054b6b9a512be231bc2db97ecf" dependencies = [ "log", "proto_core", @@ -3594,9 +3594,9 @@ dependencies = [ [[package]] name = "proto_cli" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80df73762fc198844a6cef1ca17efc535c898f3159d3d12830e65e22c01fd790" +checksum = "4d0285c66ada55658bcd55ce19b2e90517fbad94e6377b0fd0a9e9d1d45fdf78" dependencies = [ "async-recursion", "clap 4.1.8", @@ -3617,9 +3617,9 @@ dependencies = [ [[package]] name = "proto_core" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb14d5b5211249ac0a6df6aa4fd8c071a06a37a90d943bc01905eed1af99009" +checksum = "b52dfa7b9e7cf48c2dd8b432e539fea4012379f157be6f464df29dca0d8039ef" dependencies = [ "async-trait", "cached", @@ -3645,9 +3645,9 @@ dependencies = [ [[package]] name = "proto_deno" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b5db0017eb52578960cc5bb03da5316ce339b094f1b956900ff8f85a12f9e4b" +checksum = "84cf43eba43147eff296df88028570fa6b84ea9bf58363daf643a3328191b0c2" dependencies = [ "log", "proto_core", @@ -3657,9 +3657,9 @@ dependencies = [ [[package]] name = "proto_go" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38eb47f096d26f5f0c3d2acbfbbac924a4bf8ef598af6342c3d9ab21391e7eee" +checksum = "c3cb48c3392e4fd6a2c674a02338e5cd55e962118c311802ecbae8164e364141" dependencies = [ "log", "proto_core", @@ -3669,9 +3669,9 @@ dependencies = [ [[package]] name = "proto_node" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e813736a989390b74bd19a9c31a5f0acf37ef06b12081de002dc2f103c11e06" +checksum = "e9cd014faedd95abd49214fff4b64c2eda7e992cc1b5e9beefb48aaa9de3fa46" dependencies = [ "clean-path", "log", diff --git a/Cargo.toml b/Cargo.toml index 56659fd73ca..fe3ab79b48f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ console = "0.15.5" criterion = { version = "0.4.0", features = ["async_tokio"] } lazy_static = "1.4.0" petgraph = { version = "0.6.3", default-features = false, features = ["serde-1"] } -proto_cli = "0.3.0" +proto_cli = "0.3.2" regex = "1.7.1" # We don't use openssl but its required for musl builds reqwest = { version = "0.11.14", default-features = false, features = ["rustls-tls", "native-tls-vendored"] } diff --git a/website/docs/proto/install.mdx b/website/docs/proto/install.mdx index 042a9affb70..9072c5dd072 100644 --- a/website/docs/proto/install.mdx +++ b/website/docs/proto/install.mdx @@ -30,6 +30,12 @@ In Powershell or Windows Terminal, run: irm https://moonrepo.dev/install/proto.ps1 | iex ``` +You'll also need to run the following command for shims to be executable: + +``` +Set-ExecutionPolicy RemoteSigned +``` + > Windows support is currently experimental. Please report any issues! ### Other diff --git a/website/src/components/Products/Proto/Hero.tsx b/website/src/components/Products/Proto/Hero.tsx index bf2fa295def..6cce8550ec1 100644 --- a/website/src/components/Products/Proto/Hero.tsx +++ b/website/src/components/Products/Proto/Hero.tsx @@ -45,7 +45,7 @@ export default function Hero() { href="/docs/proto" className="w-full flex items-center justify-center px-2 py-1 sm:px-3 sm:py-2 text-base font-bold rounded-md text-white hover:text-white bg-white/5 hover:scale-110 md:text-lg group transition-transform" > - v0.3.0 + v0.3.2 diff --git a/website/static/install/proto.ps1 b/website/static/install/proto.ps1 index 5dc4f143fb7..c0af6cae7d2 100755 --- a/website/static/install/proto.ps1 +++ b/website/static/install/proto.ps1 @@ -6,7 +6,7 @@ $ErrorActionPreference = 'Stop' -$Version = "0.3.1" # TODO +$Version = "0.3.2" # TODO if ($Args.Length -eq 1) { $Version = $Args.Get(0) diff --git a/website/static/install/proto.sh b/website/static/install/proto.sh index 9565c249d8e..5ef72aa9da7 100755 --- a/website/static/install/proto.sh +++ b/website/static/install/proto.sh @@ -8,7 +8,7 @@ set -e bin="proto" arch=$(uname -sm) -version="${1:-0.3.1}" # TODO +version="${1:-0.3.2}" # TODO ext=".tar.xz" if [ "$OS" = "Windows_NT" ]; then