Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix version number in getting-started/installation #276

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import TabItem from "@theme/TabItem";

### Installing manually

1. [Download](https://ziglang.org/download/#release-0.12.0) a prebuilt version of Zig.
1. [Download](https://ziglang.org/download/#release-0.13.0) a prebuilt version of Zig.

Choose a build of Zig 0.12 for Linux that matches your CPU architecture. If you're unsure which architecture you're using, this can be found with:
Choose a build of Zig 0.13 for Linux that matches your CPU architecture. If you're unsure which architecture you're using, this can be found with:

```bash
uname -m
Expand All @@ -30,13 +30,13 @@ import TabItem from "@theme/TabItem";
2. Extract the archive using tar, e.g.

```bash
tar xf zig-linux-x86_64-0.12.0.tar.xz
tar xf zig-linux-x86_64-0.13.0.tar.xz
```

3. Add the location of your Zig binary to your path, e.g.

```bash
echo 'export PATH="$HOME/zig-linux-x86_64-0.12.0:$PATH"' >> ~/.bashrc
echo 'export PATH="$HOME/zig-linux-x86_64-0.13.0:$PATH"' >> ~/.bashrc
```
</TabItem>
<TabItem value="windows">
Expand All @@ -56,9 +56,9 @@ import TabItem from "@theme/TabItem";

### Installing manually

1. [Download](https://ziglang.org/download/#release-0.12.0) a prebuilt version of Zig.
1. [Download](https://ziglang.org/download/#release-0.13.0) a prebuilt version of Zig.

Choose a build of Zig 0.12 for Windows that matches your CPU architecture. Most Windows systems use `x86_64`, also known as `AMD64`. If you're unsure which architecture you're using, this can be found with:
Choose a build of Zig 0.13 for Windows that matches your CPU architecture. Most Windows systems use `x86_64`, also known as `AMD64`. If you're unsure which architecture you're using, this can be found with:

```powershell
$Env:PROCESSOR_ARCHITECTURE
Expand Down Expand Up @@ -118,7 +118,7 @@ Verify your installation with `zig version`. The output should look like this:

```
$ zig version
0.12.0
0.13.0
```

### Extras
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import TabItem from "@theme/TabItem";

### Installing manually

1. [Download](https://ziglang.org/download/#release-0.12.0) a prebuilt version of Zig.
1. [Download](https://ziglang.org/download/#release-0.13.0) a prebuilt version of Zig.

Choose a build of Zig 0.12 for Linux that matches your CPU architecture. If you're unsure which architecture you're using, this can be found with:
Choose a build of Zig 0.13 for Linux that matches your CPU architecture. If you're unsure which architecture you're using, this can be found with:

```bash
uname -m
Expand All @@ -30,13 +30,13 @@ import TabItem from "@theme/TabItem";
2. Extract the archive using tar, e.g.

```bash
tar xf zig-linux-x86_64-0.12.0.tar.xz
tar xf zig-linux-x86_64-0.13.0.tar.xz
```

3. Add the location of your Zig binary to your path, e.g.

```bash
echo 'export PATH="$HOME/zig-linux-x86_64-0.12.0:$PATH"' >> ~/.bashrc
echo 'export PATH="$HOME/zig-linux-x86_64-0.13.0:$PATH"' >> ~/.bashrc
```
</TabItem>
<TabItem value="windows">
Expand All @@ -56,9 +56,9 @@ import TabItem from "@theme/TabItem";

### Installing manually

1. [Download](https://ziglang.org/download/#release-0.12.0) a prebuilt version of Zig.
1. [Download](https://ziglang.org/download/#release-0.13.0) a prebuilt version of Zig.

Choose a build of Zig 0.12 for Windows that matches your CPU architecture. Most Windows systems use `x86_64`, also known as `AMD64`. If you're unsure which architecture you're using, this can be found with:
Choose a build of Zig 0.13 for Windows that matches your CPU architecture. Most Windows systems use `x86_64`, also known as `AMD64`. If you're unsure which architecture you're using, this can be found with:

```powershell
$Env:PROCESSOR_ARCHITECTURE
Expand Down Expand Up @@ -118,7 +118,7 @@ Verify your installation with `zig version`. The output should look like this:

```
$ zig version
0.12.0
0.13.0
```

### Extras
Expand Down