Skip to content

Commit 9bc7fbc

Browse files
committed
v0.8.0 [skip ci]
1 parent c56c0d9 commit 9bc7fbc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

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

4848
### Executable
4949

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

5252
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5353

5454
```ps1
5555
# windows example (open shell as admin)
56-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_windows.exe"
56+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_windows.exe"
5757
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5858
5959
RefreshEnv.cmd # reload the environment
6060
```
6161

6262
```ps1
6363
# linux example
64-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux"
64+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
6565
chmod +x setup_cpp_linux
6666
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6767
@@ -70,7 +70,7 @@ source ~/.profile # reload the environment
7070

7171
```ps1
7272
# mac example
73-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_mac"
73+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_mac"
7474
chmod +x setup_cpp_mac
7575
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7676
@@ -84,15 +84,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8484

8585
### With Nodejs
8686

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

8989
On Windows:
9090

9191
Open the shell as admin, download via `curl`, then install
9292

9393
```ps1
9494
# open shell as admin
95-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp.js"
95+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js"
9696
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9797
9898
RefreshEnv.cmd # reload the environment
@@ -101,7 +101,7 @@ RefreshEnv.cmd # reload the environment
101101
On Linux or Mac:
102102

103103
```ps1
104-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp.js"
104+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js"
105105
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
106106
107107
source ~/.profile # reload the environment
@@ -180,7 +180,7 @@ FROM debian:bullseye
180180
WORKDIR "/"
181181
RUN apt-get update -qq
182182
RUN apt-get install -y --no-install-recommends wget
183-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux"
183+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
184184
RUN chmod +x ./setup_cpp_linux
185185

186186
# install llvm, cmake, ninja, and ccache
@@ -259,7 +259,7 @@ stages:
259259
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
260260

261261
.setup_cpp: &setup_cpp |
262-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux"
262+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
263263
chmod +x setup_cpp_linux
264264
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
265265
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.7.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux"
99
RUN chmod +x ./setup_cpp_linux
1010

1111
# install llvm, cmake, ninja, and ccache

0 commit comments

Comments
 (0)