Skip to content

Commit 7941d4c

Browse files
committed
Update for v0.13.1 release
Signed-off-by: deadprogram <[email protected]>
1 parent f100b5d commit 7941d4c

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

content/getting-started/linux.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ You must have Go already installed on your machine in order to install TinyGo. W
2828
If you are using Ubuntu or another Debian based Linux on an Intel processor, download the DEB file from Github and install it using the following commands:
2929

3030
```shell
31-
wget https://github.com/tinygo-org/tinygo/releases/download/v0.13.0/tinygo_0.13.0_amd64.deb
32-
sudo dpkg -i tinygo_0.13.0_amd64.deb
31+
wget https://github.com/tinygo-org/tinygo/releases/download/v0.13.1/tinygo_0.13.1_amd64.deb
32+
sudo dpkg -i tinygo_0.13.1_amd64.deb
3333
```
3434

3535
If you are on a Raspberry Pi or other ARM-based Linux computer, you should use this command instead:
3636

3737
```shell
38-
wget https://github.com/tinygo-org/tinygo/releases/download/v0.13.0/tinygo_0.13.0_armhf.deb
39-
sudo dpkg -i tinygo_0.13.0_armhf.deb
38+
wget https://github.com/tinygo-org/tinygo/releases/download/v0.13.1/tinygo_0.13.1_armhf.deb
39+
sudo dpkg -i tinygo_0.13.1_armhf.deb
4040
```
4141

4242
You will need to ensure that the path to the `tinygo` executable file is in your `PATH` variable.
@@ -49,7 +49,7 @@ You can test that the installation is working properly by running this code whic
4949

5050
```shell
5151
$ tinygo version
52-
tinygo version 0.13.0 linux/amd64
52+
tinygo version 0.13.1 linux/amd64
5353
```
5454

5555
If you are only interested in compiling TinyGo code for WebAssembly then you are now done with the installation.
@@ -211,7 +211,7 @@ This results in a `tinygo` binary in the `build` directory:
211211

212212
```shell
213213
$ ./build/tinygo version
214-
tinygo version 0.13.0 linux/amd64
214+
tinygo version 0.13.1 linux/amd64
215215
```
216216

217217
### Additional Requirements for Microcontrollers

content/getting-started/macos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can test that the installation is working properly by running this code whic
2828

2929
```shell
3030
$ tinygo version
31-
tinygo version 0.13.0 darwin/amd64
31+
tinygo version 0.13.1 darwin/amd64
3232
```
3333

3434
If you are only interested in compiling TinyGo code for WebAssembly then you are done with the installation.
@@ -126,7 +126,7 @@ This results in a `tinygo` binary in the `build` directory:
126126

127127
```shell
128128
$ ./build/tinygo version
129-
tinygo version 0.13.0 darwin/amd64
129+
tinygo version 0.13.1 darwin/amd64
130130
```
131131

132132
### Additional Requirements for Microcontrollers

content/getting-started/using-docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You can use our Docker image to be able to run the TinyGo compiler on your compu
77

88
## Installing
99

10-
docker pull tinygo/tinygo:0.13.0
10+
docker pull tinygo/tinygo:0.13.1
1111

1212
## Using
1313

@@ -16,24 +16,24 @@ For your own code, you will probably want to use absolute paths.
1616

1717
A docker container exists for easy access to the TinyGo CLI. For example, to compile `wasm.wasm` for the WebAssembly export example:
1818

19-
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.0 tinygo build -o wasm.wasm -target=wasm examples/wasm/export
19+
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.1 tinygo build -o wasm.wasm -target=wasm examples/wasm/export
2020

2121
See the [WebAssembly page](../webassembly) for more information on executing the compiled
2222
WebAssembly.
2323

2424
To compile `blinky1.hex` targeting an ARM microcontroller, such as the PCA10040:
2525

26-
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.0 tinygo build -o /src/blinky1.hex -size=short -target=pca10040 examples/blinky1
26+
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.1 tinygo build -o /src/blinky1.hex -size=short -target=pca10040 examples/blinky1
2727

2828
To compile `blinky1.hex` targeting an AVR microcontroller such as the Arduino:
2929

30-
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.0 tinygo build -o /src/blinky1.hex -size=short -target=arduino examples/blinky1
30+
docker run --rm -v $(pwd):/src tinygo/tinygo:0.13.1 tinygo build -o /src/blinky1.hex -size=short -target=arduino examples/blinky1
3131

3232
For projects that have remote dependencies outside of the standard library and
3333
go code within your own project, you will need to map your entire `$GOPATH`
3434
into the docker image for those dependencies to be found:
3535

36-
docker run -v $GOPATH:/go -e "GOPATH=/go" tinygo/tinygo:0.13.0 tinygo build -o /go/src/github.com/myuser/myrepo/wasm.wasm -target wasm --no-debug /go/src/github.com/myuser/myrepo/wasm-main.go
36+
docker run -v $GOPATH:/go -e "GOPATH=/go" tinygo/tinygo:0.13.1 tinygo build -o /go/src/github.com/myuser/myrepo/wasm.wasm -target wasm --no-debug /go/src/github.com/myuser/myrepo/wasm-main.go
3737

3838
**note: At this time, tinygo does not resolve dependencies from the /vendor/ folder within your project.**
3939

content/getting-started/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ VERY IMPORTANT NOTE: You cannot yet create Windows binary programs using TinyGo,
1919

2020
- Choose the download link for Microsoft Windows, Windows 7 or later, Intel 64-bit processor.
2121

22-
- Download the TinyGo binary for Windows file from https://github.com/tinygo-org/tinygo/releases/download/v0.13.0/tinygo0.13.0.windows-amd64.zip
22+
- Download the TinyGo binary for Windows file from https://github.com/tinygo-org/tinygo/releases/download/v0.13.1/tinygo0.13.1.windows-amd64.zip
2323

2424
- Decompress the file like this:
2525

0 commit comments

Comments
 (0)