Skip to content

Commit

Permalink
deps(proto): Update to v0.3.2. (#741)
Browse files Browse the repository at this point in the history
* Update docs.

* Bump crate.
  • Loading branch information
milesj authored Mar 23, 2023
1 parent 9b598b3 commit b39499b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
6 changes: 6 additions & 0 deletions website/docs/proto/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Products/Proto/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
</Link>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion website/static/install/proto.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion website/static/install/proto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b39499b

Please sign in to comment.