Skip to content

Commit 7974077

Browse files
committed
docs: update setup-cpp version in the readme [skip test]
1 parent 045f4c5 commit 7974077

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
7070

7171
#### With executable
7272

73-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.1.1), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
73+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.3.0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
7474

7575
```shell
7676
# windows x64
77-
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1.1/setup-cpp-x64-windows.exe"
77+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.3.0/setup-cpp-x64-windows.exe"
7878
# linux x64
79-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1.1/setup-cpp-x64-linux"
79+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.3.0/setup-cpp-x64-linux"
8080
# linux arm64
81-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1.1/setup-cpp-arm64-linux"
81+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.3.0/setup-cpp-arm64-linux"
8282
# macos arm64
83-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1.1/setup-cpp-arm64-macos"
83+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.3.0/setup-cpp-arm64-macos"
8484
# macos x64
85-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.1.1/setup-cpp-x64-macos"
85+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.3.0/setup-cpp-x64-macos"
8686
```
8787

8888
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
@@ -331,7 +331,7 @@ RUN apt-get update -qq && \
331331
# install nodejs
332332
apt-get install -y --no-install-recommends nodejs npm && \
333333
# install setup-cpp
334-
npm install -g setup-cpp@v1.1.1 && \
334+
npm install -g setup-cpp@v1.3.0 && \
335335
# install the compiler and tools
336336
NODE_OPTIONS="--enable-source-maps" \
337337
setup-cpp \
@@ -441,7 +441,7 @@ stages:
441441
apt-get install -y --no-install-recommends nodejs npm
442442
443443
# install setup-cpp
444-
npm install -g setup-cpp@v1.1.1
444+
npm install -g setup-cpp@v1.3.0
445445
446446
# install the compiler and tools
447447
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true

0 commit comments

Comments
 (0)