Skip to content

Commit 5c0c45d

Browse files
committed
v0.6.1 [skip ci]
1 parent 0db19fa commit 5c0c45d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4545

4646
### Executable
4747

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

5050
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5151

5252
```ps1
5353
# windows example (open shell as admin)
54-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_windows.exe"
54+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_windows.exe"
5555
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5656
5757
RefreshEnv.cmd # reload the environment
5858
```
5959

6060
```ps1
6161
# linux example
62-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_linux"
62+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_linux"
6363
chmod +x setup_cpp_linux
6464
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6565
@@ -68,7 +68,7 @@ source ~/.profile # reload the environment
6868

6969
```ps1
7070
# mac example
71-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_mac"
71+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_mac"
7272
chmod +x setup_cpp_mac
7373
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7474
@@ -82,15 +82,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8282

8383
### With Nodejs
8484

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

8787
On Windows:
8888

8989
Open the shell as admin, download via `curl`, then install
9090

9191
```ps1
9292
# open shell as admin
93-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp.js"
93+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp.js"
9494
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9595
9696
RefreshEnv.cmd # reload the environment
@@ -99,7 +99,7 @@ RefreshEnv.cmd # reload the environment
9999
On Linux or Mac:
100100

101101
```ps1
102-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp.js"
102+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp.js"
103103
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
104104
105105
source ~/.profile # reload the environment
@@ -178,7 +178,7 @@ FROM debian:bullseye
178178
WORKDIR "/"
179179
RUN apt-get update -qq
180180
RUN apt-get install -y --no-install-recommends wget
181-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_linux"
181+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_linux"
182182
RUN chmod +x ./setup_cpp_linux
183183

184184
# install llvm, cmake, ninja, and ccache
@@ -257,7 +257,7 @@ stages:
257257
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
258258

259259
.setup_cpp: &setup_cpp |
260-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_linux"
260+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_linux"
261261
chmod +x setup_cpp_linux
262262
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
263263
source ~/.profile

building/docker/debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM debian:bullseye
55
WORKDIR "/"
66
RUN apt-get update -qq
77
RUN apt-get install -y --no-install-recommends wget
8-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.1/setup_cpp_linux"
99
RUN chmod +x ./setup_cpp_linux
1010

1111
# install llvm, cmake, ninja, and ccache

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.5.8",
3+
"version": "0.6.1",
44
"description": "Install all the tools required for building and testing C++/C projects.",
55
"repository": "https://github.com/aminya/setup-cpp",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)