Skip to content

Commit f62138f

Browse files
committed
v0.5.8 [skip ci]
1 parent d67d7e0 commit f62138f

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
@@ -43,21 +43,21 @@ 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.5.7), 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.5.8), 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.5.7/setup_cpp_windows.exe"
52+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp_windows.exe"
5353
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5454
5555
RefreshEnv.cmd # reload the environment
5656
```
5757

5858
```ps1
5959
# linux example
60-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp_linux"
60+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp_linux"
6161
chmod +x setup_cpp_linux
6262
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6363
@@ -66,7 +66,7 @@ source ~/.profile # reload the environment
6666

6767
```ps1
6868
# mac example
69-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp_mac"
69+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp_mac"
7070
chmod +x setup_cpp_mac
7171
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7272
@@ -80,15 +80,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8080

8181
### With Nodejs
8282

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

8585
On Windows:
8686

8787
Open the shell as admin, download via `curl`, then install
8888

8989
```ps1
9090
# open shell as admin
91-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp.js"
91+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp.js"
9292
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9393
9494
RefreshEnv.cmd # reload the environment
@@ -97,7 +97,7 @@ RefreshEnv.cmd # reload the environment
9797
On Linux or Mac:
9898

9999
```ps1
100-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp.js"
100+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp.js"
101101
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
102102
103103
source ~/.profile # reload the environment
@@ -174,7 +174,7 @@ FROM debian:bullseye
174174
WORKDIR "/"
175175
RUN apt-get update -qq
176176
RUN apt-get install -y --no-install-recommends wget
177-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp_linux"
177+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp_linux"
178178
RUN chmod +x ./setup_cpp_linux
179179

180180
# install llvm, cmake, ninja, and ccache
@@ -253,7 +253,7 @@ stages:
253253
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
254254

255255
.setup_cpp: &setup_cpp |
256-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7/setup_cpp_linux"
256+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/setup_cpp_linux"
257257
chmod +x setup_cpp_linux
258258
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
259259
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.5.7/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.8/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.7",
3+
"version": "0.5.8",
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)