Skip to content

Commit a717e81

Browse files
committed
v0.9.4 [skip ci]
1 parent 7d299ab commit a717e81

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
5252

5353
### Executable
5454

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

5757
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5858

5959
```ps1
6060
# windows example (open shell as admin)
61-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_windows.exe"
61+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_windows.exe"
6262
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6363
6464
RefreshEnv.cmd # reload the environment
6565
```
6666

6767
```ps1
6868
# linux example
69-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_linux"
69+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_linux"
7070
chmod +x setup_cpp_linux
7171
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7272
@@ -75,7 +75,7 @@ source ~/.profile # reload the environment
7575

7676
```ps1
7777
# mac example
78-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_mac"
78+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_mac"
7979
chmod +x setup_cpp_mac
8080
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8181
@@ -89,15 +89,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8989

9090
### With Nodejs
9191

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

9494
On Windows:
9595

9696
Open the shell as admin, download via `curl`, then install
9797

9898
```ps1
9999
# open shell as admin
100-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp.js"
100+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp.js"
101101
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
102102
103103
RefreshEnv.cmd # reload the environment
@@ -106,7 +106,7 @@ RefreshEnv.cmd # reload the environment
106106
On Linux or Mac:
107107

108108
```ps1
109-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp.js"
109+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp.js"
110110
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
111111
112112
source ~/.profile # reload the environment
@@ -184,7 +184,7 @@ FROM ubuntu:devel
184184
WORKDIR "/"
185185
RUN apt-get update -qq
186186
RUN apt-get install -y --no-install-recommends wget
187-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_linux"
187+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_linux"
188188
RUN chmod +x ./setup_cpp_linux
189189

190190
# install llvm, cmake, ninja, and ccache
@@ -263,7 +263,7 @@ stages:
263263
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
264264

265265
.setup_cpp: &setup_cpp |
266-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_linux"
266+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_linux"
267267
chmod +x setup_cpp_linux
268268
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
269269
source ~/.profile

building/docker/ubuntu.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ubuntu:devel
44
WORKDIR "/"
55
RUN apt-get update -qq
66
RUN apt-get install -y --no-install-recommends wget
7-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.3/setup_cpp_linux"
7+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.4/setup_cpp_linux"
88
RUN chmod +x ./setup_cpp_linux
99

1010
# install llvm, cmake, ninja, and ccache

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.9.3",
3+
"version": "0.9.4",
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)