Skip to content

Commit c5ed081

Browse files
committed
v0.4.0 [skip ci]
1 parent 3d8864e commit c5ed081

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
@@ -43,26 +43,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4343

4444
### Executable
4545

46-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.3.1), and run it with the available options.
46+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.4.0), and run it with the available options.
4747

4848
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4949

5050
```ps1
5151
# windows example (open shell as admin)
52-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp_windows.exe"
52+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_windows.exe"
5353
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5454
```
5555

5656
```ps1
5757
# linux example
58-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp_linux"
58+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_linux"
5959
chmod +x setup_cpp_linux
6060
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6161
```
6262

6363
```ps1
6464
# mac example
65-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp_mac"
65+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_mac"
6666
chmod +x setup_cpp_mac
6767
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6868
```
@@ -72,20 +72,20 @@ For the tools, instead of `true` that chooses the default version, you can pass
7272

7373
### With Nodejs
7474

75-
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp.js), and run it with the available options.
75+
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp.js), and run it with the available options.
7676

7777
On Windows
7878

7979
```ps1
8080
# open shell as admin
81-
curl "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp.js"
81+
curl "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp.js"
8282
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8383
```
8484

8585
On Linux or Mac:
8686

8787
```ps1
88-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp.js"
88+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp.js"
8989
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9090
```
9191

@@ -160,7 +160,7 @@ WORKDIR "/"
160160
RUN apt-get update -qq
161161
RUN apt-get install -y --no-install-recommends apt-utils
162162
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
163-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.3.1/setup_cpp_linux"
163+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_linux"
164164
RUN chmod +x ./setup_cpp_linux
165165

166166
# install llvm, cmake, ninja, ccache, and vcpkg

0 commit comments

Comments
 (0)